@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.597Z") @Stability(value=Stable) public interface CaaRecordProps extends software.amazon.jsii.JsiiSerializable, RecordSetOptions
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.*;
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)
.recordName("recordName")
.ttl(Duration.minutes(30))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CaaRecordProps.Builder
A builder for
CaaRecordProps |
static class |
CaaRecordProps.Jsii$Proxy
An implementation for
CaaRecordProps |
| Modifier and Type | Method and Description |
|---|---|
static CaaRecordProps.Builder |
builder() |
List<CaaRecordValue> |
getValues()
The values.
|
getComment, getDeleteExisting, getRecordName, getTtl, getZone@Stability(value=Stable) @NotNull List<CaaRecordValue> getValues()
@Stability(value=Stable) static CaaRecordProps.Builder builder()
builder in interface RecordSetOptionsCaaRecordProps.Builder of CaaRecordPropsCopyright © 2022. All rights reserved.