/** *
A complex type that contains information about a configuration for DNS query logging.
*/ export interface _QueryLoggingConfig { /** *The ID for a configuration for DNS query logging.
*/ Id: string; /** *The ID of the hosted zone that CloudWatch Logs is logging queries for.
*/ HostedZoneId: string; /** *The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.
*/ CloudWatchLogsLogGroupArn: string; } export declare type _UnmarshalledQueryLoggingConfig = _QueryLoggingConfig;