Class: Aws::CodeBuild::Types::FleetStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::FleetStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
The status of the compute fleet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#context ⇒ String
Additional information about a compute fleet.
-
#message ⇒ String
A message associated with the status of a compute fleet.
-
#status_code ⇒ String
The status code of the compute fleet.
Instance Attribute Details
#context ⇒ String
Additional information about a compute fleet. Valid values include:
-
‘CREATE_FAILED`: The compute fleet has failed to create.
-
‘UPDATE_FAILED`: The compute fleet has failed to update.
2664 2665 2666 2667 2668 2669 2670 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2664 class FleetStatus < Struct.new( :status_code, :context, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A message associated with the status of a compute fleet.
2664 2665 2666 2667 2668 2669 2670 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2664 class FleetStatus < Struct.new( :status_code, :context, :message) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
The status code of the compute fleet. Valid values include:
-
‘CREATING`: The compute fleet is being created.
-
‘UPDATING`: The compute fleet is being updated.
-
‘ROTATING`: The compute fleet is being rotated.
-
‘PENDING_DELETION`: The compute fleet is pending deletion.
-
‘DELETING`: The compute fleet is being deleted.
-
‘CREATE_FAILED`: The compute fleet has failed to create.
-
‘UPDATE_ROLLBACK_FAILED`: The compute fleet has failed to update and could not rollback to previous state.
-
‘ACTIVE`: The compute fleet has succeeded and is active.
2664 2665 2666 2667 2668 2669 2670 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2664 class FleetStatus < Struct.new( :status_code, :context, :message) SENSITIVE = [] include Aws::Structure end |