Class: Aws::CodeDeploy::Types::InstanceSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::InstanceSummary
- Defined in:
- gems/aws-sdk-codedeploy/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.
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2835 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.
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2835 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.
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2835 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.
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2835 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.
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2835 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.
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2835 class InstanceSummary < Struct.new( :deployment_id, :instance_id, :status, :last_updated_at, :lifecycle_events, :instance_type) SENSITIVE = [] include Aws::Structure end |