import { _UnmarshalledQueryLoggingConfig } from "./_QueryLoggingConfig"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * ListQueryLoggingConfigsOutput shape */ export interface ListQueryLoggingConfigsOutput extends __aws_sdk_types.MetadataBearer { /** *

An array that contains one QueryLoggingConfig element for each configuration for DNS query logging that is associated with the current AWS account.

*/ QueryLoggingConfigs: Array<_UnmarshalledQueryLoggingConfig>; /** *

If a response includes the last of the query logging configurations that are associated with the current AWS account, NextToken doesn't appear in the response.

If a response doesn't include the last of the configurations, you can get more configurations by submitting another ListQueryLoggingConfigs request. Get the value of NextToken that Amazon Route 53 returned in the previous response and include it in NextToken in the next request.

*/ NextToken?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }