import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import type { DeleteStoredQueryRequest, DeleteStoredQueryResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteStoredQueryCommand}. */ export interface DeleteStoredQueryCommandInput extends DeleteStoredQueryRequest { } /** * @public * * The output of {@link DeleteStoredQueryCommand}. */ export interface DeleteStoredQueryCommandOutput extends DeleteStoredQueryResponse, __MetadataBearer { } declare const DeleteStoredQueryCommand_base: { new (input: DeleteStoredQueryCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteStoredQueryCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes the stored query for a single Amazon Web Services account and a single Amazon Web Services Region.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DeleteStoredQueryCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DeleteStoredQueryCommand } = require("@aws-sdk/client-config-service"); // CommonJS import * // import type { ConfigServiceClientConfig } from "@aws-sdk/client-config-service"; * const config = {}; // type is ConfigServiceClientConfig * const client = new ConfigServiceClient(config); * const input = { // DeleteStoredQueryRequest * QueryName: "STRING_VALUE", // required * }; * const command = new DeleteStoredQueryCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteStoredQueryCommandInput - {@link DeleteStoredQueryCommandInput} * @returns {@link DeleteStoredQueryCommandOutput} * @see {@link DeleteStoredQueryCommandInput} for command's `input` shape. * @see {@link DeleteStoredQueryCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

You have specified a resource that does not exist.

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

The requested operation is not valid. You will see this exception if there are missing required fields or if the input value fails the validation.

*

For PutStoredQuery, one of the following errors:

* *

For DescribeConfigurationRecorders and DescribeConfigurationRecorderStatus, one of the following errors:

* *

For AssociateResourceTypes and DisassociateResourceTypes, one of the following errors:

* * * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DeleteStoredQueryCommand extends DeleteStoredQueryCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteStoredQueryRequest; output: {}; }; sdk: { input: DeleteStoredQueryCommandInput; output: DeleteStoredQueryCommandOutput; }; }; }