Interface PrivateHostedZoneAttributes

All Superinterfaces:
HostedZoneAttributes, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
PrivateHostedZoneAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:17.845Z") @Stability(Stable) public interface PrivateHostedZoneAttributes extends software.amazon.jsii.JsiiSerializable, HostedZoneAttributes
Reference to a private hosted zone.

Example:

 IPrivateHostedZone privateZoneFromAttributes = PrivateHostedZone.fromPrivateHostedZoneAttributes(this, "MyPrivateZone", PrivateHostedZoneAttributes.builder()
         .zoneName("example.local")
         .hostedZoneId("ZOJJZC49E0EPZ")
         .build());
 // Does not know zoneName
 IPrivateHostedZone privateZoneFromId = PrivateHostedZone.fromPrivateHostedZoneId(this, "MyPrivateZone", "ZOJJZC49E0EPZ");