Class CfnService.ThresholdConfigurationProperty
Defines the failure threshold that the deployment circuit breaker uses to monitor a deployment.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnService.ThresholdConfigurationProperty : CfnService.IThresholdConfigurationProperty
Syntax (vb)
Public Class CfnService.ThresholdConfigurationProperty Implements CfnService.IThresholdConfigurationProperty
Remarks
The type and value together determine the number of task failures that are tolerated before the circuit breaker triggers.
By default, the threshold configuration uses a type of BOUNDED_PERCENT with a value of 50.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ECS;
var thresholdConfigurationProperty = new ThresholdConfigurationProperty {
Type = "type",
Value = 123
};
Synopsis
Constructors
| ThresholdConfigurationProperty() | Defines the failure threshold that the deployment circuit breaker uses to monitor a deployment. |
Properties
| Type | Determines how Amazon ECS uses |
| Value | Specifies the integer that Amazon ECS uses to calculate the failure threshold. |
Constructors
ThresholdConfigurationProperty()
Defines the failure threshold that the deployment circuit breaker uses to monitor a deployment.
public ThresholdConfigurationProperty()
Remarks
The type and value together determine the number of task failures that are tolerated before the circuit breaker triggers.
By default, the threshold configuration uses a type of BOUNDED_PERCENT with a value of 50.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ECS;
var thresholdConfigurationProperty = new ThresholdConfigurationProperty {
Type = "type",
Value = 123
};
Properties
Type
Determines how Amazon ECS uses value to calculate the failure threshold.
public string Type { get; set; }
Property Value
Remarks
For the percentage types (BOUNDED_PERCENT and UNBOUNDED_PERCENT), Amazon ECS multiplies value by the latest service desired count. For COUNT, Amazon ECS uses value directly as the threshold. The default is BOUNDED_PERCENT.
Value
Specifies the integer that Amazon ECS uses to calculate the failure threshold.
public double Value { get; set; }
Property Value
Remarks
When type is COUNT, this value is the failure threshold itself. When type is a percentage type, Amazon ECS multiplies this value by the latest service desired count to produce the failure threshold. The default is 50.