Method: Aws::GameLift::Types::ContainerFleet#status

Defined in:
lib/aws-sdk-gamelift/types.rb

#statusString

The current status of the container fleet.

  • ‘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)


876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
# File 'lib/aws-sdk-gamelift/types.rb', line 876

class ContainerFleet < Struct.new(
  :fleet_id,
  :fleet_arn,
  :fleet_role_arn,
  :game_server_container_group_definition_name,
  :game_server_container_group_definition_arn,
  :per_instance_container_group_definition_name,
  :per_instance_container_group_definition_arn,
  :instance_connection_port_range,
  :instance_inbound_permissions,
  :game_server_container_groups_per_instance,
  :maximum_game_server_container_groups_per_instance,
  :instance_type,
  :billing_type,
  :description,
  :creation_time,
  :metric_groups,
  :new_game_session_protection_policy,
  :game_session_creation_limit_policy,
  :status,
  :deployment_details,
  :log_configuration,
  :location_attributes)
  SENSITIVE = []
  include Aws::Structure
end