Class CaaRecord.Builder

java.lang.Object
software.amazon.awscdk.services.route53.CaaRecord.Builder
All Implemented Interfaces:
software.amazon.jsii.Builder<CaaRecord>
Enclosing class:
CaaRecord

@Stability(Stable) public static final class CaaRecord.Builder extends Object implements software.amazon.jsii.Builder<CaaRecord>
A fluent builder for CaaRecord.
  • Method Details

    • create

      @Stability(Stable) public static CaaRecord.Builder create(software.constructs.Construct scope, String id)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      Returns:
      a new instance of CaaRecord.Builder.
    • zone

      @Stability(Stable) public CaaRecord.Builder zone(IHostedZone zone)
      The hosted zone in which to define the new record.

      Parameters:
      zone - The hosted zone in which to define the new record. This parameter is required.
      Returns:
      this
    • comment

      @Stability(Stable) public CaaRecord.Builder comment(String comment)
      A comment to add on the record.

      Default: no comment

      Parameters:
      comment - A comment to add on the record. This parameter is required.
      Returns:
      this
    • recordName

      @Stability(Stable) public CaaRecord.Builder recordName(String recordName)
      The domain name for this record.

      Default: zone root

      Parameters:
      recordName - The domain name for this record. This parameter is required.
      Returns:
      this
    • ttl

      @Stability(Stable) public CaaRecord.Builder ttl(Duration ttl)
      The resource record cache time to live (TTL).

      Default: Duration.minutes(30)

      Parameters:
      ttl - The resource record cache time to live (TTL). This parameter is required.
      Returns:
      this
    • values

      @Stability(Stable) public CaaRecord.Builder values(List<? extends CaaRecordValue> values)
      The values.

      Parameters:
      values - The values. This parameter is required.
      Returns:
      this
    • build

      @Stability(Stable) public CaaRecord build()
      Specified by:
      build in interface software.amazon.jsii.Builder<CaaRecord>
      Returns:
      a newly built instance of CaaRecord.