interface CfnHealthCheckMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53.Mixins.CfnHealthCheckMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53/mixins#CfnHealthCheckMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53.mixins.CfnHealthCheckMixinProps |
Python | aws_cdk.mixins_preview.aws_route53.mixins.CfnHealthCheckMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53 » mixins » CfnHealthCheckMixinProps |
Properties for CfnHealthCheckPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53_mixins } from '@aws-cdk/mixins-preview/aws-route53';
const cfnHealthCheckMixinProps: route53_mixins.CfnHealthCheckMixinProps = {
healthCheckConfig: {
alarmIdentifier: {
name: 'name',
region: 'region',
},
childHealthChecks: ['childHealthChecks'],
enableSni: false,
failureThreshold: 123,
fullyQualifiedDomainName: 'fullyQualifiedDomainName',
healthThreshold: 123,
insufficientDataHealthStatus: 'insufficientDataHealthStatus',
inverted: false,
ipAddress: 'ipAddress',
measureLatency: false,
port: 123,
regions: ['regions'],
requestInterval: 123,
resourcePath: 'resourcePath',
routingControlArn: 'routingControlArn',
searchString: 'searchString',
type: 'type',
},
healthCheckTags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| health | IResolvable | Health | A complex type that contains detailed information about one health check. |
| health | Health[] | The HealthCheckTags property describes key-value pairs that are associated with an AWS::Route53::HealthCheck resource. |
healthCheckConfig?
Type:
IResolvable | Health
(optional)
A complex type that contains detailed information about one health check.
For the values to enter for HealthCheckConfig , see HealthCheckConfig
healthCheckTags?
Type:
Health[]
(optional)
The HealthCheckTags property describes key-value pairs that are associated with an AWS::Route53::HealthCheck resource.

.NET
Go
Java
Python
TypeScript