Interface ZoneDelegationOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ZoneDelegationOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.052Z")
@Stability(Stable)
public interface ZoneDelegationOptions
extends software.amazon.jsii.JsiiSerializable
Options available when creating a delegation relationship from one PublicHostedZone to another.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.route53.*; import software.amazon.awscdk.core.*; ZoneDelegationOptions zoneDelegationOptions = ZoneDelegationOptions.builder() .comment("comment") .ttl(Duration.minutes(30)) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forZoneDelegationOptions
static final class
An implementation forZoneDelegationOptions
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComment
A comment to add on the DNS record created to incorporate the delegation.Default: none
-
getTtl
The TTL (Time To Live) of the DNS delegation record in DNS caches.Default: 172800
-
builder
- Returns:
- a
ZoneDelegationOptions.Builder
ofZoneDelegationOptions
-