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();