interface Route53HealthChecksProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ARCRegionSwitch.Mixins.CfnPlanPropsMixin.Route53HealthChecksProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsarcregionswitch/mixins#CfnPlanPropsMixin_Route53HealthChecksProperty |
Java | software.amazon.awscdk.mixins.preview.services.arcregionswitch.mixins.CfnPlanPropsMixin.Route53HealthChecksProperty |
Python | aws_cdk.mixins_preview.aws_arcregionswitch.mixins.CfnPlanPropsMixin.Route53HealthChecksProperty |
TypeScript | @aws-cdk/mixins-preview » aws_arcregionswitch » mixins » CfnPlanPropsMixin » Route53HealthChecksProperty |
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 route53HealthChecksProperty: arcregionswitch_mixins.CfnPlanPropsMixin.Route53HealthChecksProperty = {
healthCheckIds: ['healthCheckIds'],
hostedZoneIds: ['hostedZoneIds'],
recordNames: ['recordNames'],
regions: ['regions'],
};
Properties
| Name | Type | Description |
|---|---|---|
| health | string[] | |
| hosted | string[] | |
| record | string[] | |
| regions? | string[] |
healthCheckIds?
Type:
string[]
(optional)
hostedZoneIds?
Type:
string[]
(optional)
recordNames?
Type:
string[]
(optional)
regions?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript