interface HealthCheckConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RTBFabric.CfnResponderGatewayPropsMixin.HealthCheckConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrtbfabric#CfnResponderGatewayPropsMixin_HealthCheckConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnResponderGatewayPropsMixin.HealthCheckConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_rtbfabric.CfnResponderGatewayPropsMixin.HealthCheckConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rtbfabric » CfnResponderGatewayPropsMixin » HealthCheckConfigProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rtbfabric as rtbfabric } from '@aws-cdk/cfn-property-mixins';
const healthCheckConfigProperty: rtbfabric.CfnResponderGatewayPropsMixin.HealthCheckConfigProperty = {
healthyThresholdCount: 123,
intervalSeconds: 123,
path: 'path',
port: 123,
protocol: 'protocol',
statusCodeMatcher: 'statusCodeMatcher',
timeoutMs: 123,
unhealthyThresholdCount: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| healthy | number | |
| interval | number | |
| path? | string | |
| port? | number | |
| protocol? | string | |
| status | string | |
| timeout | number | |
| unhealthy | number |
healthyThresholdCount?
Type:
number
(optional)
intervalSeconds?
Type:
number
(optional)
path?
Type:
string
(optional)
port?
Type:
number
(optional)
protocol?
Type:
string
(optional)
statusCodeMatcher?
Type:
string
(optional)
timeoutMs?
Type:
number
(optional)
unhealthyThresholdCount?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript