interface CfnResolverQueryLoggingConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Resolver.Mixins.CfnResolverQueryLoggingConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53resolver/mixins#CfnResolverQueryLoggingConfigMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53resolver.mixins.CfnResolverQueryLoggingConfigMixinProps |
Python | aws_cdk.mixins_preview.aws_route53resolver.mixins.CfnResolverQueryLoggingConfigMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53resolver » mixins » CfnResolverQueryLoggingConfigMixinProps |
Properties for CfnResolverQueryLoggingConfigPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53resolver_mixins } from '@aws-cdk/mixins-preview/aws-route53resolver';
const cfnResolverQueryLoggingConfigMixinProps: route53resolver_mixins.CfnResolverQueryLoggingConfigMixinProps = {
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.

.NET
Go
Java
Python
TypeScript