interface Route53HealthCheckConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ARCRegionSwitch.Mixins.CfnPlanPropsMixin.Route53HealthCheckConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsarcregionswitch/mixins#CfnPlanPropsMixin_Route53HealthCheckConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.arcregionswitch.mixins.CfnPlanPropsMixin.Route53HealthCheckConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_arcregionswitch.mixins.CfnPlanPropsMixin.Route53HealthCheckConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_arcregionswitch » mixins » CfnPlanPropsMixin » Route53HealthCheckConfigurationProperty |
The Amazon Route 53 health check configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as arcregionswitch_mixins } from '@aws-cdk/mixins-preview/aws-arcregionswitch';
const route53HealthCheckConfigurationProperty: arcregionswitch_mixins.CfnPlanPropsMixin.Route53HealthCheckConfigurationProperty = {
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
hostedZoneId: 'hostedZoneId',
recordName: 'recordName',
recordSets: [{
recordSetIdentifier: 'recordSetIdentifier',
region: 'region',
}],
timeoutMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| cross | string | The cross account role for the configuration. |
| external | string | The external ID (secret key) for the configuration. |
| hosted | string | The Amazon Route 53 health check configuration hosted zone ID. |
| record | string | The Amazon Route 53 health check configuration record name. |
| record | IResolvable | (IResolvable | Route53)[] | The Amazon Route 53 health check configuration record sets. |
| timeout | number | The Amazon Route 53 health check configuration time out (in minutes). |
crossAccountRole?
Type:
string
(optional)
The cross account role for the configuration.
externalId?
Type:
string
(optional)
The external ID (secret key) for the configuration.
hostedZoneId?
Type:
string
(optional)
The Amazon Route 53 health check configuration hosted zone ID.
recordName?
Type:
string
(optional)
The Amazon Route 53 health check configuration record name.
recordSets?
Type:
IResolvable | (IResolvable | Route53)[]
(optional)
The Amazon Route 53 health check configuration record sets.
timeoutMinutes?
Type:
number
(optional, default: 60)
The Amazon Route 53 health check configuration time out (in minutes).

.NET
Go
Java
Python
TypeScript