Class: Aws::GameLift::Types::ContainerFleetLocationAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerFleetLocationAttributes
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Details about a location in a multi-location container fleet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#location ⇒ String
A location identifier.
-
#player_gateway_status ⇒ String
The current status of player gateway in this location for this container fleet.
-
#status ⇒ String
The status of fleet activity in the location.
Instance Attribute Details
#location ⇒ String
A location identifier.
971 972 973 974 975 976 977 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 971 class ContainerFleetLocationAttributes < Struct.new( :location, :status, :player_gateway_status) SENSITIVE = [] include Aws::Structure end |
#player_gateway_status ⇒ String
The current status of player gateway in this location for this
container fleet. Note, even if a container fleet has
PlayerGatewayMode configured as ENABLED, player gateway might not
be available in a specific location. For more information about
locations where player gateway is supported, see Amazon GameLift
Servers service locations.
Possible values include:
ENABLED-- Player gateway is available for this container fleet location.DISABLED-- Player gateway is not available for this container fleet location.
971 972 973 974 975 976 977 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 971 class ContainerFleetLocationAttributes < Struct.new( :location, :status, :player_gateway_status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of fleet activity in the location.
PENDING-- A new container fleet has been requested.CREATING-- A new container fleet resource is being created.CREATED-- A new container fleet resource has been created. No fleet instances have been deployed.ACTIVATING-- New container fleet instances are being deployed.ACTIVE-- The container fleet has been deployed and is ready to host game sessions.UPDATING-- Updates to the container fleet is being updated. A deployment is in progress.
971 972 973 974 975 976 977 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 971 class ContainerFleetLocationAttributes < Struct.new( :location, :status, :player_gateway_status) SENSITIVE = [] include Aws::Structure end |