Class: Aws::ECS::Types::DaemonCircuitBreaker

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#failure_countInteger

The number of times the circuit breaker detected a daemon deployment failure.

Returns:

  • (Integer)


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

#statusString

The circuit breaker status. Amazon ECS is not using the circuit breaker for daemon deployment failures when the status is DISABLED.

Returns:

  • (String)


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

#thresholdInteger

The threshold which determines that the daemon deployment failed.

Returns:

  • (Integer)


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