Class: Aws::ECS::Types::DaemonCircuitBreaker
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::DaemonCircuitBreaker
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Information about the circuit breaker used to determine when a daemon deployment has failed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failure_count ⇒ Integer
The number of times the circuit breaker detected a daemon deployment failure.
-
#status ⇒ String
The circuit breaker status.
-
#threshold ⇒ Integer
The threshold which determines that the daemon deployment failed.
Instance Attribute Details
#failure_count ⇒ Integer
The number of times the circuit breaker detected a daemon deployment failure.
4056 4057 4058 4059 4060 4061 4062 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4056 class DaemonCircuitBreaker < Struct.new( :failure_count, :status, :threshold) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The circuit breaker status. Amazon ECS is not using the circuit
breaker for daemon deployment failures when the status is
DISABLED.
4056 4057 4058 4059 4060 4061 4062 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4056 class DaemonCircuitBreaker < Struct.new( :failure_count, :status, :threshold) SENSITIVE = [] include Aws::Structure end |
#threshold ⇒ Integer
The threshold which determines that the daemon deployment failed.
4056 4057 4058 4059 4060 4061 4062 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4056 class DaemonCircuitBreaker < Struct.new( :failure_count, :status, :threshold) SENSITIVE = [] include Aws::Structure end |