Class: Aws::SSMIncidents::Types::CodeDeployDeployment
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::CodeDeployDeployment
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssmincidents/types.rb
Overview
Information about a CodeDeploy deployment that occurred around the time of an incident and could be a possible cause of the incident.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_group_arn ⇒ String
The Amazon Resource Name (ARN) of the CodeDeploy deployment group associated with the deployment.
-
#deployment_id ⇒ String
The ID of the CodeDeploy deployment.
-
#end_time ⇒ Time
The timestamp for when the CodeDeploy deployment ended.
-
#start_time ⇒ Time
The timestamp for when the CodeDeploy deployment began.
Instance Attribute Details
#deployment_group_arn ⇒ String
The Amazon Resource Name (ARN) of the CodeDeploy deployment group associated with the deployment.
267 268 269 270 271 272 273 274 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 267 class CodeDeployDeployment < Struct.new( :deployment_group_arn, :deployment_id, :end_time, :start_time) SENSITIVE = [] include Aws::Structure end |
#deployment_id ⇒ String
The ID of the CodeDeploy deployment.
267 268 269 270 271 272 273 274 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 267 class CodeDeployDeployment < Struct.new( :deployment_group_arn, :deployment_id, :end_time, :start_time) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
The timestamp for when the CodeDeploy deployment ended. Not reported for deployments that are still in progress.
267 268 269 270 271 272 273 274 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 267 class CodeDeployDeployment < Struct.new( :deployment_group_arn, :deployment_id, :end_time, :start_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The timestamp for when the CodeDeploy deployment began.
267 268 269 270 271 272 273 274 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 267 class CodeDeployDeployment < Struct.new( :deployment_group_arn, :deployment_id, :end_time, :start_time) SENSITIVE = [] include Aws::Structure end |