Interface PrivateHostedZoneProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:13.015Z") @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();