Class: Aws::GameLift::Types::DescribeGameServerInstancesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::DescribeGameServerInstancesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#game_server_group_name ⇒ String
A unique identifier for the game server group.
-
#instance_ids ⇒ Array<String>
The Amazon EC2 instance IDs that you want to retrieve status on.
-
#limit ⇒ Integer
The maximum number of results to return.
-
#next_token ⇒ String
A token that indicates the start of the next sequential page of results.
Instance Attribute Details
#game_server_group_name ⇒ String
A unique identifier for the game server group. Use either the name or ARN value.
4206 4207 4208 4209 4210 4211 4212 4213 |
# File 'lib/aws-sdk-gamelift/types.rb', line 4206 class DescribeGameServerInstancesInput < Struct.new( :game_server_group_name, :instance_ids, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#instance_ids ⇒ Array<String>
The Amazon EC2 instance IDs that you want to retrieve status on. Amazon EC2 instance IDs use a 17-character format, for example: ‘i-1234567890abcdef0`. To retrieve all instances in the game server group, leave this parameter empty.
4206 4207 4208 4209 4210 4211 4212 4213 |
# File 'lib/aws-sdk-gamelift/types.rb', line 4206 class DescribeGameServerInstancesInput < Struct.new( :game_server_group_name, :instance_ids, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of results to return. Use this parameter with ‘NextToken` to get results as a set of sequential pages.
4206 4207 4208 4209 4210 4211 4212 4213 |
# File 'lib/aws-sdk-gamelift/types.rb', line 4206 class DescribeGameServerInstancesInput < Struct.new( :game_server_group_name, :instance_ids, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.
4206 4207 4208 4209 4210 4211 4212 4213 |
# File 'lib/aws-sdk-gamelift/types.rb', line 4206 class DescribeGameServerInstancesInput < Struct.new( :game_server_group_name, :instance_ids, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |