interface HostedZoneFeaturesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53.Mixins.CfnHostedZonePropsMixin.HostedZoneFeaturesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53/mixins#CfnHostedZonePropsMixin_HostedZoneFeaturesProperty |
Java | software.amazon.awscdk.mixins.preview.services.route53.mixins.CfnHostedZonePropsMixin.HostedZoneFeaturesProperty |
Python | aws_cdk.mixins_preview.aws_route53.mixins.CfnHostedZonePropsMixin.HostedZoneFeaturesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_route53 » mixins » CfnHostedZonePropsMixin » HostedZoneFeaturesProperty |
Represents the features configuration for a hosted zone, including the status of various features and any associated failure reasons.
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 hostedZoneFeaturesProperty: route53_mixins.CfnHostedZonePropsMixin.HostedZoneFeaturesProperty = {
enableAcceleratedRecovery: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | Enable accelerated recovery on your public hosted zone to gain the ability to make changes to DNS records in the event of us-east-1 unavailability. |
enableAcceleratedRecovery?
Type:
boolean | IResolvable
(optional)
Enable accelerated recovery on your public hosted zone to gain the ability to make changes to DNS records in the event of us-east-1 unavailability.

.NET
Go
Java
Python
TypeScript