interface CfnResolverQueryLoggingConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53Resolver.CfnResolverQueryLoggingConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53resolver#CfnResolverQueryLoggingConfigMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53resolver.CfnResolverQueryLoggingConfigMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53resolver.CfnResolverQueryLoggingConfigMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53resolver » 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 { aws_route53resolver as route53resolver } from '@aws-cdk/cfn-property-mixins';
const cfnResolverQueryLoggingConfigMixinProps: route53resolver.CfnResolverQueryLoggingConfigMixinProps = {
destinationArn: 'destinationArn',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | ILog | IBucket | 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 | ILog | IBucket
(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