Interface PrivateHostedZoneProps

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

@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)", date="2023-10-26T00:56:13.092Z") @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();