CfnResolverQueryLoggingConfigProps
- class aws_cdk.aws_route53resolver.CfnResolverQueryLoggingConfigProps(*, destination_arn=None, name=None, tags=None)
- Bases: - object- Properties for defining a - CfnResolverQueryLoggingConfig.- Parameters:
- destination_arn ( - Optional[- str]) – 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 ( - Optional[- str]) – The name of the query logging configuration.
- tags ( - Optional[- Sequence[- Union[- CfnTag,- Dict[- str,- Any]]]]) – An array of key-value pairs to apply to this resource.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_route53resolver as route53resolver cfn_resolver_query_logging_config_props = route53resolver.CfnResolverQueryLoggingConfigProps( destination_arn="destinationArn", name="name", tags=[CfnTag( key="key", value="value" )] ) - Attributes - destination_arn
- an Amazon S3 bucket, a CloudWatch Logs log group, or a Kinesis Data Firehose delivery stream. - See:
- Type:
- The ARN of the resource that you want Resolver to send query logs 
 
 - name
- The name of the query logging configuration. 
 - tags
- An array of key-value pairs to apply to this resource.