Interface CaaRecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,RecordSetOptions
- All Known Implementing Classes:
CaaRecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:16.000Z")
@Stability(Stable)
public interface CaaRecordProps
extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
Construction properties for a CaaRecord.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; import software.amazon.awscdk.services.route53.*; GeoLocation geoLocation; HostedZone hostedZone; CaaRecordProps caaRecordProps = CaaRecordProps.builder() .values(List.of(CaaRecordValue.builder() .flag(123) .tag(CaaTag.ISSUE) .value("value") .build())) .zone(hostedZone) // the properties below are optional .comment("comment") .deleteExisting(false) .geoLocation(geoLocation) .multiValueAnswer(false) .recordName("recordName") .region("region") .setIdentifier("setIdentifier") .ttl(Duration.minutes(30)) .weight(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCaaRecordProps
static final class
An implementation forCaaRecordProps
-
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 values. -
builder
- Returns:
- a
CaaRecordProps.Builder
ofCaaRecordProps
-