Class: Aws::GameLift::Types::LocationalDeployment
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::LocationalDeployment
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
For a multi-location container fleet, describes the progress of a deployment across all fleet locations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_status ⇒ String
The status of fleet deployment activity in the location.
Instance Attribute Details
#deployment_status ⇒ String
The status of fleet deployment activity in the location.
-
IN_PROGRESS– The deployment is in progress. -
IMPAIRED– The deployment failed and the fleet has some impaired containers. -
COMPLETE– The deployment has completed successfully. -
ROLLBACK_IN_PROGRESS– The deployment failed and rollback has been initiated. -
ROLLBACK_IN_COMPLETE– The deployment failed and rollback has been completed. -
CANCELLED– The deployment was cancelled.
8643 8644 8645 8646 8647 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8643 class LocationalDeployment < Struct.new( :deployment_status) SENSITIVE = [] include Aws::Structure end |