interface Route53HealthChecksProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.Route53HealthChecksProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_Route53HealthChecksProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.Route53HealthChecksProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.Route53HealthChecksProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » Route53HealthChecksProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_arcregionswitch as arcregionswitch } from 'aws-cdk-lib';
const route53HealthChecksProperty: arcregionswitch.CfnPlan.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