@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-02T20:25:33.178Z")
public interface 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.services.route53.*; import software.amazon.awscdk.core.*; HostedZone hostedZone; RecordSetOptions recordSetOptions = RecordSetOptions.builder() .zone(hostedZone) // the properties below are optional .comment("comment") .recordName("recordName") .ttl(Duration.minutes(30)) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
RecordSetOptions.Builder
A builder for
RecordSetOptions |
static class |
RecordSetOptions.Jsii$Proxy
An implementation for
RecordSetOptions |
Modifier and Type | Method and Description |
---|---|
static RecordSetOptions.Builder |
builder() |
default java.lang.String |
getComment()
A comment to add on the record.
|
default java.lang.String |
getRecordName()
The domain name for this record.
|
default Duration |
getTtl()
The resource record cache time to live (TTL).
|
IHostedZone |
getZone()
The hosted zone in which to define the new record.
|
IHostedZone getZone()
default java.lang.String getComment()
Default: no comment
default java.lang.String getRecordName()
Default: zone root
default Duration getTtl()
Default: Duration.minutes(30)
static RecordSetOptions.Builder builder()
RecordSetOptions.Builder
of RecordSetOptions