import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteConfigurationTemplateMessage } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteConfigurationTemplateCommand}. */ export interface DeleteConfigurationTemplateCommandInput extends DeleteConfigurationTemplateMessage { } /** * @public * * The output of {@link DeleteConfigurationTemplateCommand}. */ export interface DeleteConfigurationTemplateCommandOutput extends __MetadataBearer { } declare const DeleteConfigurationTemplateCommand_base: { new (input: DeleteConfigurationTemplateCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteConfigurationTemplateCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified configuration template.

* *

When you launch an environment using a configuration template, the environment gets a * copy of the template. You can delete or modify the environment's copy of the template * without affecting the running environment.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ElasticBeanstalkClient, DeleteConfigurationTemplateCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import * // const { ElasticBeanstalkClient, DeleteConfigurationTemplateCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import * // import type { ElasticBeanstalkClientConfig } from "@aws-sdk/client-elastic-beanstalk"; * const config = {}; // type is ElasticBeanstalkClientConfig * const client = new ElasticBeanstalkClient(config); * const input = { // DeleteConfigurationTemplateMessage * ApplicationName: "STRING_VALUE", // required * TemplateName: "STRING_VALUE", // required * }; * const command = new DeleteConfigurationTemplateCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteConfigurationTemplateCommandInput - {@link DeleteConfigurationTemplateCommandInput} * @returns {@link DeleteConfigurationTemplateCommandOutput} * @see {@link DeleteConfigurationTemplateCommandInput} for command's `input` shape. * @see {@link DeleteConfigurationTemplateCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * * @throws {@link OperationInProgressException} (client fault) *

Unable to perform the specified operation because another operation that effects an * element in this activity is already in progress.

* * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * * @example To delete a configuration template * ```javascript * // The following operation deletes a configuration template named my-template for an application named my-app: * const input = { * ApplicationName: "my-app", * TemplateName: "my-template" * }; * const command = new DeleteConfigurationTemplateCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class DeleteConfigurationTemplateCommand extends DeleteConfigurationTemplateCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteConfigurationTemplateMessage; output: {}; }; sdk: { input: DeleteConfigurationTemplateCommandInput; output: DeleteConfigurationTemplateCommandOutput; }; }; }