interface CfnResolverQueryLoggingConfigProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Route53Resolver.CfnResolverQueryLoggingConfigProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53resolver#CfnResolverQueryLoggingConfigProps | 
|  Java | software.amazon.awscdk.services.route53resolver.CfnResolverQueryLoggingConfigProps | 
|  Python | aws_cdk.aws_route53resolver.CfnResolverQueryLoggingConfigProps | 
|  TypeScript | aws-cdk-lib»aws_route53resolver»CfnResolverQueryLoggingConfigProps | 
Properties for defining a CfnResolverQueryLoggingConfig.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53resolver as route53resolver } from 'aws-cdk-lib';
const cfnResolverQueryLoggingConfigProps: route53resolver.CfnResolverQueryLoggingConfigProps = {
  destinationArn: 'destinationArn',
  name: 'name',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| destination | string | The ARN of the resource that you want Resolver to send query logs: an Amazon S3 bucket, a CloudWatch Logs log group, or a Kinesis Data Firehose delivery stream. | 
| name? | string | The name of the query logging configuration. | 
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. | 
destinationArn?
Type:
string
(optional)
The ARN of the resource that you want Resolver to send query logs: an Amazon S3 bucket, a CloudWatch Logs log group, or a Kinesis Data Firehose delivery stream.
name?
Type:
string
(optional)
The name of the query logging configuration.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
