Interface CfnHostedZone.HostedZoneConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnHostedZone.HostedZoneConfigProperty.Jsii$Proxy
Enclosing class:
CfnHostedZone

@Stability(Stable) public static interface CfnHostedZone.HostedZoneConfigProperty extends software.amazon.jsii.JsiiSerializable
A complex type that contains an optional comment about your hosted zone.

If you don't want to specify a comment, omit both the HostedZoneConfig and Comment elements.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.route53.*;
 HostedZoneConfigProperty hostedZoneConfigProperty = HostedZoneConfigProperty.builder()
         .comment("comment")
         .build();