import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteIdentityRequest, DeleteIdentityResponse } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteIdentityCommand}. */ export interface DeleteIdentityCommandInput extends DeleteIdentityRequest { } /** * @public * * The output of {@link DeleteIdentityCommand}. */ export interface DeleteIdentityCommandOutput extends DeleteIdentityResponse, __MetadataBearer { } declare const DeleteIdentityCommand_base: { new (input: DeleteIdentityCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteIdentityCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes the specified identity (an email address or a domain) from the list of * verified identities.

*

You can execute this operation no more than once per second.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SESClient, DeleteIdentityCommand } from "@aws-sdk/client-ses"; // ES Modules import * // const { SESClient, DeleteIdentityCommand } = require("@aws-sdk/client-ses"); // CommonJS import * // import type { SESClientConfig } from "@aws-sdk/client-ses"; * const config = {}; // type is SESClientConfig * const client = new SESClient(config); * const input = { // DeleteIdentityRequest * Identity: "STRING_VALUE", // required * }; * const command = new DeleteIdentityCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteIdentityCommandInput - {@link DeleteIdentityCommandInput} * @returns {@link DeleteIdentityCommandOutput} * @see {@link DeleteIdentityCommandInput} for command's `input` shape. * @see {@link DeleteIdentityCommandOutput} for command's `response` shape. * @see {@link SESClientResolvedConfig | config} for SESClient's `config` shape. * * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* * * @example DeleteIdentity * ```javascript * // The following example deletes an identity from the list of identities that have been submitted for verification with Amazon SES: * const input = { * Identity: "user@example.com" * }; * const command = new DeleteIdentityCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class DeleteIdentityCommand extends DeleteIdentityCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteIdentityRequest; output: {}; }; sdk: { input: DeleteIdentityCommandInput; output: DeleteIdentityCommandOutput; }; }; }