Class: Aws::CodeDeploy::Types::LastDeploymentInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::LastDeploymentInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Information about the most recent attempted or successful deployment to a deployment group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#create_time ⇒ Time
A timestamp that indicates when the most recent deployment to the deployment group started.
-
#deployment_id ⇒ String
The unique ID of a deployment.
-
#end_time ⇒ Time
A timestamp that indicates when the most recent deployment to the deployment group was complete.
-
#status ⇒ String
The status of the most recent deployment.
Instance Attribute Details
#create_time ⇒ Time
A timestamp that indicates when the most recent deployment to the deployment group started.
3400 3401 3402 3403 3404 3405 3406 3407 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3400 class LastDeploymentInfo < Struct.new( :deployment_id, :status, :end_time, :create_time) SENSITIVE = [] include Aws::Structure end |
#deployment_id ⇒ String
The unique ID of a deployment.
3400 3401 3402 3403 3404 3405 3406 3407 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3400 class LastDeploymentInfo < Struct.new( :deployment_id, :status, :end_time, :create_time) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
A timestamp that indicates when the most recent deployment to the deployment group was complete.
3400 3401 3402 3403 3404 3405 3406 3407 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3400 class LastDeploymentInfo < Struct.new( :deployment_id, :status, :end_time, :create_time) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the most recent deployment.
3400 3401 3402 3403 3404 3405 3406 3407 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3400 class LastDeploymentInfo < Struct.new( :deployment_id, :status, :end_time, :create_time) SENSITIVE = [] include Aws::Structure end |