Class CfnContainerPropsMixin.HealthCheckConfigProperty
HealthCheckConfig is a property of the PublicEndpoint property. It describes the healthcheck configuration of a container deployment on a container service.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnContainerPropsMixin.HealthCheckConfigProperty : CfnContainerPropsMixin.IHealthCheckConfigProperty
Syntax (vb)
Public Class CfnContainerPropsMixin.HealthCheckConfigProperty Implements CfnContainerPropsMixin.IHealthCheckConfigProperty
Remarks
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.Mixins.Preview.AWS.Lightsail.Mixins;
var healthCheckConfigProperty = new HealthCheckConfigProperty {
HealthyThreshold = 123,
IntervalSeconds = 123,
Path = "path",
SuccessCodes = "successCodes",
TimeoutSeconds = 123,
UnhealthyThreshold = 123
};
Synopsis
Constructors
| HealthCheckConfigProperty() |
|
Properties
| HealthyThreshold | The number of consecutive health check successes required before moving the container to the |
| IntervalSeconds | The approximate interval, in seconds, between health checks of an individual container. |
| Path | The path on the container on which to perform the health check. |
| SuccessCodes | The HTTP codes to use when checking for a successful response from a container. |
| TimeoutSeconds | The amount of time, in seconds, during which no response means a failed health check. |
| UnhealthyThreshold | The number of consecutive health check failures required before moving the container to the |
Constructors
HealthCheckConfigProperty()
HealthCheckConfig is a property of the PublicEndpoint property. It describes the healthcheck configuration of a container deployment on a container service.
public HealthCheckConfigProperty()
Remarks
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.Mixins.Preview.AWS.Lightsail.Mixins;
var healthCheckConfigProperty = new HealthCheckConfigProperty {
HealthyThreshold = 123,
IntervalSeconds = 123,
Path = "path",
SuccessCodes = "successCodes",
TimeoutSeconds = 123,
UnhealthyThreshold = 123
};
Properties
HealthyThreshold
The number of consecutive health check successes required before moving the container to the Healthy state.
public double? HealthyThreshold { get; set; }
Property Value
Remarks
IntervalSeconds
The approximate interval, in seconds, between health checks of an individual container.
public double? IntervalSeconds { get; set; }
Property Value
Remarks
You can specify between 5 and 300 seconds. The default value is 5 .
Path
The path on the container on which to perform the health check.
public string? Path { get; set; }
Property Value
Remarks
SuccessCodes
The HTTP codes to use when checking for a successful response from a container.
public string? SuccessCodes { get; set; }
Property Value
Remarks
You can specify values between 200 and 499 . You can specify multiple values (for example, 200,202 ) or a range of values (for example, 200-299 ).
TimeoutSeconds
The amount of time, in seconds, during which no response means a failed health check.
public double? TimeoutSeconds { get; set; }
Property Value
Remarks
You can specify between 2 and 60 seconds. The default value is 2 .
UnhealthyThreshold
The number of consecutive health check failures required before moving the container to the Unhealthy state.
public double? UnhealthyThreshold { get; set; }