Interface DsRecordProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, RecordSetOptions
All Known Implementing Classes:
DsRecordProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:39.376Z") @Stability(Stable) public interface DsRecordProps extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties for a DSRecord.

Example:

 HostedZone myZone;
 DsRecord.Builder.create(this, "DSRecord")
         .zone(myZone)
         .recordName("foo")
         .values(List.of("12345 3 1 123456789abcdef67890123456789abcdef67890"))
         .ttl(Duration.minutes(90))
         .build();