Show / Hide Table of Contents

Class CfnHostedZoneProps

Properties for defining a CfnHostedZone.

Inheritance
object
CfnHostedZoneProps
Implements
ICfnHostedZoneProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHostedZoneProps : ICfnHostedZoneProps
Syntax (vb)
Public Class CfnHostedZoneProps Implements ICfnHostedZoneProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html

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 cfnHostedZoneProps = new CfnHostedZoneProps {
                 HostedZoneConfig = new HostedZoneConfigProperty {
                     Comment = "comment"
                 },
                 HostedZoneTags = new [] { new HostedZoneTagProperty {
                     Key = "key",
                     Value = "value"
                 } },
                 Name = "name",
                 QueryLoggingConfig = new QueryLoggingConfigProperty {
                     CloudWatchLogsLogGroupArn = "cloudWatchLogsLogGroupArn"
                 },
                 Vpcs = new [] { new VPCProperty {
                     VpcId = "vpcId",
                     VpcRegion = "vpcRegion"
                 } }
             };

Synopsis

Constructors

CfnHostedZoneProps()

Properties for defining a CfnHostedZone.

Properties

HostedZoneConfig

A complex type that contains an optional comment.

HostedZoneTags

Adds, edits, or deletes tags for a health check or a hosted zone.

Name

The name of the domain.

QueryLoggingConfig

Creates a configuration for DNS query logging.

Vpcs

Private hosted zones: A complex type that contains information about the VPCs that are associated with the specified hosted zone.

Constructors

CfnHostedZoneProps()

Properties for defining a CfnHostedZone.

public CfnHostedZoneProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html

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 cfnHostedZoneProps = new CfnHostedZoneProps {
                 HostedZoneConfig = new HostedZoneConfigProperty {
                     Comment = "comment"
                 },
                 HostedZoneTags = new [] { new HostedZoneTagProperty {
                     Key = "key",
                     Value = "value"
                 } },
                 Name = "name",
                 QueryLoggingConfig = new QueryLoggingConfigProperty {
                     CloudWatchLogsLogGroupArn = "cloudWatchLogsLogGroupArn"
                 },
                 Vpcs = new [] { new VPCProperty {
                     VpcId = "vpcId",
                     VpcRegion = "vpcRegion"
                 } }
             };

Properties

HostedZoneConfig

A complex type that contains an optional comment.

public object? HostedZoneConfig { get; set; }
Property Value

object

Remarks

If you don't want to specify a comment, omit the HostedZoneConfig and Comment elements.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-hostedzoneconfig

HostedZoneTags

Adds, edits, or deletes tags for a health check or a hosted zone.

public CfnHostedZone.IHostedZoneTagProperty[]? HostedZoneTags { get; set; }
Property Value

IHostedZoneTagProperty[]

Remarks

For information about using tags for cost allocation, see Using Cost Allocation Tags in the Billing and Cost Management User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-hostedzonetags

Name

The name of the domain.

public string? Name { get; set; }
Property Value

string

Remarks

Specify a fully qualified domain name, for example, www.example.com . The trailing dot is optional; Amazon Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats www.example.com (without a trailing dot) and www.example.com. (with a trailing dot) as identical.

If you're creating a public hosted zone, this is the name you have registered with your DNS registrar. If your domain name is registered with a registrar other than Route 53, change the name servers for your domain to the set of NameServers that are returned by the Fn::GetAtt intrinsic function.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name

QueryLoggingConfig

Creates a configuration for DNS query logging.

public object? QueryLoggingConfig { get; set; }
Property Value

object

Remarks

After you create a query logging configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs log group.

DNS query logs contain information about the queries that Route 53 receives for a specified public hosted zone, such as the following:

    If you create a query logging configuration using the Route 53 console, Route 53 performs these operations automatically.
    

      /aws/route53/ hosted zone name

      In the next step, you'll create a resource policy, which controls access to one or more log groups and the associated AWS resources, such as Route 53 hosted zones. There's a limit on the number of resource policies that you can create, so we recommend that you use a consistent prefix so you can use the same resource policy for all the log groups that you create for query logging.

        arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*

        To avoid the confused deputy problem, a security issue where an entity without a permission for an action can coerce a more-privileged entity to perform it, you can optionally limit the permissions that a service has to a resource in a resource-based policy by supplying the following values:

          For more information, see The confused deputy problem in the AWS IAM User Guide .

          You can't use the CloudWatch console to create or edit a resource policy. You must use the CloudWatch API, one of the AWS SDKs, or the AWS CLI .
          

            The name of each log stream is in the following format:

            hosted zone ID / edge location code

            The edge location code is a three-letter code and an arbitrarily assigned number, for example, DFW3. The three-letter code typically corresponds with the International Air Transport Association airport code for an airport near the edge location. (These abbreviations might change in the future.) For a list of edge locations, see "The Route 53 Global Network" on the Route 53 Product Details page.

              See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-queryloggingconfig

              Vpcs

              Private hosted zones: A complex type that contains information about the VPCs that are associated with the specified hosted zone.

              public object? Vpcs { get; set; }
              Property Value

              object

              Remarks
              For public hosted zones, omit <code>VPCs</code> , <code>VPCId</code> , and <code>VPCRegion</code> .
              

              See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-vpcs

              Implements

              ICfnHostedZoneProps
              Back to top Generated by DocFX