import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingV2Client"; import type { DeleteTrustStoreInput, DeleteTrustStoreOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteTrustStoreCommand}. */ export interface DeleteTrustStoreCommandInput extends DeleteTrustStoreInput { } /** * @public * * The output of {@link DeleteTrustStoreCommand}. */ export interface DeleteTrustStoreCommandOutput extends DeleteTrustStoreOutput, __MetadataBearer { } declare const DeleteTrustStoreCommand_base: { new (input: DeleteTrustStoreCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteTrustStoreCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a trust store.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ElasticLoadBalancingV2Client, DeleteTrustStoreCommand } from "@aws-sdk/client-elastic-load-balancing-v2"; // ES Modules import * // const { ElasticLoadBalancingV2Client, DeleteTrustStoreCommand } = require("@aws-sdk/client-elastic-load-balancing-v2"); // CommonJS import * // import type { ElasticLoadBalancingV2ClientConfig } from "@aws-sdk/client-elastic-load-balancing-v2"; * const config = {}; // type is ElasticLoadBalancingV2ClientConfig * const client = new ElasticLoadBalancingV2Client(config); * const input = { // DeleteTrustStoreInput * TrustStoreArn: "STRING_VALUE", // required * }; * const command = new DeleteTrustStoreCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteTrustStoreCommandInput - {@link DeleteTrustStoreCommandInput} * @returns {@link DeleteTrustStoreCommandOutput} * @see {@link DeleteTrustStoreCommandInput} for command's `input` shape. * @see {@link DeleteTrustStoreCommandOutput} for command's `response` shape. * @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape. * * @throws {@link TrustStoreInUseException} (client fault) *

The specified trust store is currently in use.

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

The specified trust store does not exist.

* * @throws {@link ElasticLoadBalancingV2ServiceException} *

Base exception class for all service exceptions from ElasticLoadBalancingV2 service.

* * * @public */ export declare class DeleteTrustStoreCommand extends DeleteTrustStoreCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteTrustStoreInput; output: {}; }; sdk: { input: DeleteTrustStoreCommandInput; output: DeleteTrustStoreCommandOutput; }; }; }