Class: Aws::GameLift::Types::GameServerInstance
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::GameServerInstance
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
Additional properties, including status, that describe an EC2 instance in a game server group. Instance configurations are set with game server group properties (see DescribeGameServerGroup and with the EC2 launch template that was used when creating the game server group.
Retrieve game server instances for a game server group by calling DescribeGameServerInstances.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#game_server_group_arn ⇒ String
A generated unique identifier for the game server group that includes the game server instance.
-
#game_server_group_name ⇒ String
A developer-defined identifier for the game server group that includes the game server instance.
-
#instance_id ⇒ String
The unique identifier for the instance where the game server is running.
-
#instance_status ⇒ String
Current status of the game server instance.
Instance Attribute Details
#game_server_group_arn ⇒ String
A generated unique identifier for the game server group that includes the game server instance.
6573 6574 6575 6576 6577 6578 6579 6580 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6573 class GameServerInstance < Struct.new( :game_server_group_name, :game_server_group_arn, :instance_id, :instance_status) SENSITIVE = [] include Aws::Structure end |
#game_server_group_name ⇒ String
A developer-defined identifier for the game server group that includes the game server instance. The name is unique for each Region in each Amazon Web Services account.
6573 6574 6575 6576 6577 6578 6579 6580 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6573 class GameServerInstance < Struct.new( :game_server_group_name, :game_server_group_arn, :instance_id, :instance_status) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The unique identifier for the instance where the game server is running. This ID is available in the instance metadata. EC2 instance IDs use a 17-character format, for example: i-1234567890abcdef0.
6573 6574 6575 6576 6577 6578 6579 6580 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6573 class GameServerInstance < Struct.new( :game_server_group_name, :game_server_group_arn, :instance_id, :instance_status) SENSITIVE = [] include Aws::Structure end |
#instance_status ⇒ String
Current status of the game server instance
6573 6574 6575 6576 6577 6578 6579 6580 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6573 class GameServerInstance < Struct.new( :game_server_group_name, :game_server_group_arn, :instance_id, :instance_status) SENSITIVE = [] include Aws::Structure end |