Interface CaaRecordProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:23.792Z") @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();