Interface NsRecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,RecordSetOptions
- All Known Implementing Classes:
NsRecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:16.087Z")
@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, getDeleteExisting, getGeoLocation, getMultiValueAnswer, getRecordName, getRegion, getSetIdentifier, getTtl, getWeight, getZone
-
Method Details
-
getValues
The NS values. -
builder
- Returns:
- a
NsRecordProps.Builder
ofNsRecordProps
-