Show / Hide Table of Contents

Interface ICommonHostedZoneProps

Common properties to create a Route 53 hosted zone.

Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICommonHostedZoneProps
Syntax (vb)
Public Interface ICommonHostedZoneProps
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;

            var commonHostedZoneProps = new CommonHostedZoneProps {
                ZoneName = "zoneName",

                // the properties below are optional
                AddTrailingDot = false,
                Comment = "comment",
                QueryLogsLogGroupArn = "queryLogsLogGroupArn"
            };

Synopsis

Properties

AddTrailingDot

Whether to add a trailing dot to the zone name.

Comment

Any comments that you want to include about the hosted zone.

QueryLogsLogGroupArn

The Amazon Resource Name (ARN) for the log group that you want Amazon Route 53 to send query logs to.

ZoneName

The name of the domain.

Properties

AddTrailingDot

Whether to add a trailing dot to the zone name.

bool? AddTrailingDot { get; }
Property Value

bool?

Remarks

Default: true

Comment

Any comments that you want to include about the hosted zone.

string? Comment { get; }
Property Value

string

Remarks

Default: none

QueryLogsLogGroupArn

The Amazon Resource Name (ARN) for the log group that you want Amazon Route 53 to send query logs to.

string? QueryLogsLogGroupArn { get; }
Property Value

string

Remarks

Default: disabled

ZoneName

The name of the domain.

string ZoneName { get; }
Property Value

string

Remarks

For resource record types that include a domain name, specify a fully qualified domain name.

Back to top Generated by DocFX