import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteCertificateRequest } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteCertificateCommand}. */ export interface DeleteCertificateCommandInput extends DeleteCertificateRequest { } /** * @public * * The output of {@link DeleteCertificateCommand}. */ export interface DeleteCertificateCommandOutput extends __MetadataBearer { } declare const DeleteCertificateCommand_base: { new (input: DeleteCertificateCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteCertificateCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes the certificate that's specified in the CertificateId parameter.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { TransferClient, DeleteCertificateCommand } from "@aws-sdk/client-transfer"; // ES Modules import * // const { TransferClient, DeleteCertificateCommand } = require("@aws-sdk/client-transfer"); // CommonJS import * // import type { TransferClientConfig } from "@aws-sdk/client-transfer"; * const config = {}; // type is TransferClientConfig * const client = new TransferClient(config); * const input = { // DeleteCertificateRequest * CertificateId: "STRING_VALUE", // required * }; * const command = new DeleteCertificateCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteCertificateCommandInput - {@link DeleteCertificateCommandInput} * @returns {@link DeleteCertificateCommandOutput} * @see {@link DeleteCertificateCommandInput} for command's `input` shape. * @see {@link DeleteCertificateCommandOutput} for command's `response` shape. * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape. * * @throws {@link InternalServiceError} (server fault) *

This exception is thrown when an error occurs in the Transfer Family service.

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

This exception is thrown when the client submits a malformed request.

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

This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family service.

* * @throws {@link ServiceUnavailableException} (server fault) *

The request has failed because the Amazon Web ServicesTransfer Family service is not available.

* * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* * * @public */ export declare class DeleteCertificateCommand extends DeleteCertificateCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteCertificateRequest; output: {}; }; sdk: { input: DeleteCertificateCommandInput; output: DeleteCertificateCommandOutput; }; }; }