Interface PrivateHostedZoneProps

All Superinterfaces:
CommonHostedZoneProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
PrivateHostedZoneProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:43.035Z") @Stability(Stable) public interface PrivateHostedZoneProps extends software.amazon.jsii.JsiiSerializable, CommonHostedZoneProps
Properties to create a Route 53 private hosted zone.

Example:

 Vpc vpc;
 PrivateHostedZone zone = PrivateHostedZone.Builder.create(this, "HostedZone")
         .zoneName("fully.qualified.domain.com")
         .vpc(vpc)
         .build();