Class: Aws::ECS::Types::Rollback
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Rollback
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Information about the service deployment rollback.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reason ⇒ String
The reason the rollback happened.
-
#service_revision_arn ⇒ String
The ARN of the service revision deployed as part of the rollback.
-
#started_at ⇒ Time
Time time that the rollback started.
Instance Attribute Details
#reason ⇒ String
The reason the rollback happened. For example, the circuit breaker initiated the rollback operation.
8988 8989 8990 8991 8992 8993 8994 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8988 class Rollback < Struct.new( :reason, :started_at, :service_revision_arn) SENSITIVE = [] include Aws::Structure end |
#service_revision_arn ⇒ String
The ARN of the service revision deployed as part of the rollback.
8988 8989 8990 8991 8992 8993 8994 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8988 class Rollback < Struct.new( :reason, :started_at, :service_revision_arn) SENSITIVE = [] include Aws::Structure end |
#started_at ⇒ Time
Time time that the rollback started. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
8988 8989 8990 8991 8992 8993 8994 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8988 class Rollback < Struct.new( :reason, :started_at, :service_revision_arn) SENSITIVE = [] include Aws::Structure end |