Show / Hide Table of Contents

Interface IZoneDelegationOptions

Options available when creating a delegation relationship from one PublicHostedZone to another.

Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.AWS.Route53.dll
Syntax (csharp)
public interface IZoneDelegationOptions
Syntax (vb)
Public Interface IZoneDelegationOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Route53;
using Amazon.CDK;
var zoneDelegationOptions = new ZoneDelegationOptions {
    Comment = "comment",
    Ttl = Duration.Minutes(30)
};

Synopsis

Properties

Comment

A comment to add on the DNS record created to incorporate the delegation.

Ttl

The TTL (Time To Live) of the DNS delegation record in DNS caches.

Properties

Comment

A comment to add on the DNS record created to incorporate the delegation.

virtual string Comment { get; }
Property Value

System.String

Remarks

Default: none

Ttl

The TTL (Time To Live) of the DNS delegation record in DNS caches.

virtual Duration Ttl { get; }
Property Value

Duration

Remarks

Default: 172800

Back to top Generated by DocFX