Class: Aws::GameLift::Types::ContainerFleetLocationAttributes

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#locationString

A location identifier.

Returns:

  • (String)


930
931
932
933
934
935
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 930

class ContainerFleetLocationAttributes < Struct.new(
  :location,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

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.

Returns:

  • (String)


930
931
932
933
934
935
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 930

class ContainerFleetLocationAttributes < Struct.new(
  :location,
  :status)
  SENSITIVE = []
  include Aws::Structure
end