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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forPrivateHostedZoneProps
static final class
An implementation forPrivateHostedZoneProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.route53.CommonHostedZoneProps
getComment, getQueryLogsLogGroupArn, getZoneName
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpc
A VPC that you want to associate with this hosted zone.Private hosted zones must be associated with at least one VPC. You can associated additional VPCs using
addVpc(vpc)
. -
builder
- Returns:
- a
PrivateHostedZoneProps.Builder
ofPrivateHostedZoneProps
-