Class: Aws::GameLift::Types::DescribeGameServerInstancesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::DescribeGameServerInstancesInput
- Defined in:
- gems/aws-sdk-gamelift/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.
4281 4282 4283 4284 4285 4286 4287 4288 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 4281 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.
4281 4282 4283 4284 4285 4286 4287 4288 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 4281 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.
4281 4282 4283 4284 4285 4286 4287 4288 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 4281 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.
4281 4282 4283 4284 4285 4286 4287 4288 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 4281 class DescribeGameServerInstancesInput < Struct.new( :game_server_group_name, :instance_ids, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |