Interface PrivateHostedZoneProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:23.889Z") @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();