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

Deprecated. Use the VerifyEmailIdentity operation to verify a new email * address.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SESClient, VerifyEmailAddressCommand } from "@aws-sdk/client-ses"; // ES Modules import * // const { SESClient, VerifyEmailAddressCommand } = 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 = { // VerifyEmailAddressRequest * EmailAddress: "STRING_VALUE", // required * }; * const command = new VerifyEmailAddressCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param VerifyEmailAddressCommandInput - {@link VerifyEmailAddressCommandInput} * @returns {@link VerifyEmailAddressCommandOutput} * @see {@link VerifyEmailAddressCommandInput} for command's `input` shape. * @see {@link VerifyEmailAddressCommandOutput} 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 VerifyEmailAddress * ```javascript * // The following example starts the email address verification process with Amazon SES: * const input = { * EmailAddress: "user@example.com" * }; * const command = new VerifyEmailAddressCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class VerifyEmailAddressCommand extends VerifyEmailAddressCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: VerifyEmailAddressRequest; output: {}; }; sdk: { input: VerifyEmailAddressCommandInput; output: VerifyEmailAddressCommandOutput; }; }; }