Interface CaaRecordProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,RecordSetOptions
- All Known Implementing Classes:
CaaRecordProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.885Z")
@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.services.route53.*;
import software.amazon.awscdk.core.*;
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")
.recordName("recordName")
.ttl(Duration.minutes(30))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCaaRecordPropsstatic final classAn implementation forCaaRecordProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.route53.RecordSetOptions
getComment, getRecordName, getTtl, getZone
-
Method Details
-
getValues
The values. -
builder
- Returns:
- a
CaaRecordProps.BuilderofCaaRecordProps
-