Class: Aws::SecurityHub::Types::AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails data as a hash:
{
enable: false,
rollback: false,
}
Determines whether a service deployment fails if a service cannot reach a steady state.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enable ⇒ Boolean
Whether to enable the deployment circuit breaker logic for the service.
-
#rollback ⇒ Boolean
Whether to roll back the service if a service deployment fails.
Instance Attribute Details
#enable ⇒ Boolean
Whether to enable the deployment circuit breaker logic for the service.
7950 7951 7952 7953 7954 7955 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 7950 class AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails < Struct.new( :enable, :rollback) SENSITIVE = [] include Aws::Structure end |
#rollback ⇒ Boolean
Whether to roll back the service if a service deployment fails. If rollback is enabled, when a service deployment fails, the service is rolled back to the last deployment that completed successfully.
7950 7951 7952 7953 7954 7955 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 7950 class AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails < Struct.new( :enable, :rollback) SENSITIVE = [] include Aws::Structure end |