Interface NsRecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,RecordSetOptions
- All Known Implementing Classes:
NsRecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.033Z")
@Stability(Stable)
public interface NsRecordProps
extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties for a NSRecord.
Example:
HostedZone myZone; NsRecord.Builder.create(this, "NSRecord") .zone(myZone) .recordName("foo") .values(List.of("ns-1.awsdns.co.uk.", "ns-2.awsdns.com.")) .ttl(Duration.minutes(90)) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forNsRecordProps
static final class
An implementation forNsRecordProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.route53.RecordSetOptions
getComment, getRecordName, getTtl, getZone
-
Method Details
-
getValues
The NS values. -
builder
- Returns:
- a
NsRecordProps.Builder
ofNsRecordProps
-