Interface DsRecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,RecordSetOptions
- All Known Implementing Classes:
DsRecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:16.076Z")
@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forDsRecordProps
static final class
An implementation forDsRecordProps
-
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 DS values. -
builder
- Returns:
- a
DsRecordProps.Builder
ofDsRecordProps
-