Class: Aws::CodeDeploy::Types::InstanceSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::InstanceSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Information about an instance in a deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The unique ID of a deployment.
-
#instance_id ⇒ String
The instance ID.
-
#instance_type ⇒ String
Information about which environment an instance belongs to in a blue/green deployment.
-
#last_updated_at ⇒ Time
A timestamp that indicates when the instance information was last updated.
-
#lifecycle_events ⇒ Array<Types::LifecycleEvent>
A list of lifecycle events for this instance.
-
#status ⇒ String
The deployment status for this instance:.
Instance Attribute Details
#deployment_id ⇒ String
The unique ID of a deployment.
3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3256 class InstanceSummary < Struct.new( :deployment_id, :instance_id, :status, :last_updated_at, :lifecycle_events, :instance_type) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The instance ID.
3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3256 class InstanceSummary < Struct.new( :deployment_id, :instance_id, :status, :last_updated_at, :lifecycle_events, :instance_type) SENSITIVE = [] include Aws::Structure end |
#instance_type ⇒ String
Information about which environment an instance belongs to in a blue/green deployment.
-
BLUE: The instance is part of the original environment.
-
GREEN: The instance is part of the replacement environment.
3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3256 class InstanceSummary < Struct.new( :deployment_id, :instance_id, :status, :last_updated_at, :lifecycle_events, :instance_type) SENSITIVE = [] include Aws::Structure end |
#last_updated_at ⇒ Time
A timestamp that indicates when the instance information was last updated.
3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3256 class InstanceSummary < Struct.new( :deployment_id, :instance_id, :status, :last_updated_at, :lifecycle_events, :instance_type) SENSITIVE = [] include Aws::Structure end |
#lifecycle_events ⇒ Array<Types::LifecycleEvent>
A list of lifecycle events for this instance.
3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3256 class InstanceSummary < Struct.new( :deployment_id, :instance_id, :status, :last_updated_at, :lifecycle_events, :instance_type) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The deployment status for this instance:
-
‘Pending`: The deployment is pending for this instance.
-
‘In Progress`: The deployment is in progress for this instance.
-
‘Succeeded`: The deployment has succeeded for this instance.
-
‘Failed`: The deployment has failed for this instance.
-
‘Skipped`: The deployment has been skipped for this instance.
-
‘Unknown`: The deployment status is unknown for this instance.
3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3256 class InstanceSummary < Struct.new( :deployment_id, :instance_id, :status, :last_updated_at, :lifecycle_events, :instance_type) SENSITIVE = [] include Aws::Structure end |