interface HostedZoneFeaturesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53.CfnHostedZone.HostedZoneFeaturesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53#CfnHostedZone_HostedZoneFeaturesProperty |
Java | software.amazon.awscdk.services.route53.CfnHostedZone.HostedZoneFeaturesProperty |
Python | aws_cdk.aws_route53.CfnHostedZone.HostedZoneFeaturesProperty |
TypeScript | aws-cdk-lib » aws_route53 » CfnHostedZone » 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 { aws_route53 as route53 } from 'aws-cdk-lib';
const hostedZoneFeaturesProperty: route53.CfnHostedZone.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