Class CfnHostedZone.QueryLoggingConfigProperty
A complex type that contains information about a configuration for DNS query logging.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHostedZone.QueryLoggingConfigProperty : CfnHostedZone.IQueryLoggingConfigProperty
Syntax (vb)
Public Class CfnHostedZone.QueryLoggingConfigProperty Implements CfnHostedZone.IQueryLoggingConfigProperty
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 queryLoggingConfigProperty = new QueryLoggingConfigProperty {
CloudWatchLogsLogGroupArn = "cloudWatchLogsLogGroupArn"
};
Synopsis
Constructors
QueryLoggingConfigProperty() | A complex type that contains information about a configuration for DNS query logging. |
Properties
CloudWatchLogsLogGroupArn | The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to. |
Constructors
QueryLoggingConfigProperty()
A complex type that contains information about a configuration for DNS query logging.
public QueryLoggingConfigProperty()
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 queryLoggingConfigProperty = new QueryLoggingConfigProperty {
CloudWatchLogsLogGroupArn = "cloudWatchLogsLogGroupArn"
};
Properties
CloudWatchLogsLogGroupArn
The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.
public string CloudWatchLogsLogGroupArn { get; set; }