import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetQueryLoggingConfigRequest, GetQueryLoggingConfigResponse } from "../models/models_0"; import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetQueryLoggingConfigCommand}. */ export interface GetQueryLoggingConfigCommandInput extends GetQueryLoggingConfigRequest { } /** * @public * * The output of {@link GetQueryLoggingConfigCommand}. */ export interface GetQueryLoggingConfigCommandOutput extends GetQueryLoggingConfigResponse, __MetadataBearer { } declare const GetQueryLoggingConfigCommand_base: { new (input: GetQueryLoggingConfigCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetQueryLoggingConfigCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets information about a specified configuration for DNS query logging.

*

For more information about DNS query logs, see CreateQueryLoggingConfig and Logging DNS * Queries.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Route53Client, GetQueryLoggingConfigCommand } from "@aws-sdk/client-route-53"; // ES Modules import * // const { Route53Client, GetQueryLoggingConfigCommand } = require("@aws-sdk/client-route-53"); // CommonJS import * // import type { Route53ClientConfig } from "@aws-sdk/client-route-53"; * const config = {}; // type is Route53ClientConfig * const client = new Route53Client(config); * const input = { // GetQueryLoggingConfigRequest * Id: "STRING_VALUE", // required * }; * const command = new GetQueryLoggingConfigCommand(input); * const response = await client.send(command); * // { // GetQueryLoggingConfigResponse * // QueryLoggingConfig: { // QueryLoggingConfig * // Id: "STRING_VALUE", // required * // HostedZoneId: "STRING_VALUE", // required * // CloudWatchLogsLogGroupArn: "STRING_VALUE", // required * // }, * // }; * * ``` * * @param GetQueryLoggingConfigCommandInput - {@link GetQueryLoggingConfigCommandInput} * @returns {@link GetQueryLoggingConfigCommandOutput} * @see {@link GetQueryLoggingConfigCommandInput} for command's `input` shape. * @see {@link GetQueryLoggingConfigCommandOutput} for command's `response` shape. * @see {@link Route53ClientResolvedConfig | config} for Route53Client's `config` shape. * * @throws {@link InvalidInput} (client fault) *

The input is not valid.

* * @throws {@link NoSuchQueryLoggingConfig} (client fault) *

There is no DNS query logging configuration with the specified ID.

* * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* * * @public */ export declare class GetQueryLoggingConfigCommand extends GetQueryLoggingConfigCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetQueryLoggingConfigRequest; output: GetQueryLoggingConfigResponse; }; sdk: { input: GetQueryLoggingConfigCommandInput; output: GetQueryLoggingConfigCommandOutput; }; }; }