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

Creates a configuration set.

*

Configuration sets enable you to publish email sending events. For information about * using configuration sets, see the Amazon SES Developer * Guide.

*

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, CreateConfigurationSetCommand } from "@aws-sdk/client-ses"; // ES Modules import * // const { SESClient, CreateConfigurationSetCommand } = 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 = { // CreateConfigurationSetRequest * ConfigurationSet: { // ConfigurationSet * Name: "STRING_VALUE", // required * }, * }; * const command = new CreateConfigurationSetCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param CreateConfigurationSetCommandInput - {@link CreateConfigurationSetCommandInput} * @returns {@link CreateConfigurationSetCommandOutput} * @see {@link CreateConfigurationSetCommandInput} for command's `input` shape. * @see {@link CreateConfigurationSetCommandOutput} for command's `response` shape. * @see {@link SESClientResolvedConfig | config} for SESClient's `config` shape. * * @throws {@link ConfigurationSetAlreadyExistsException} (client fault) *

Indicates that the configuration set could not be created because of a naming * conflict.

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

Indicates that the configuration set is invalid. See the error message for * details.

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

Indicates that a resource could not be created because of service limits. For a list * of Amazon SES limits, see the Amazon SES Developer * Guide.

* * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* * * @public */ export declare class CreateConfigurationSetCommand extends CreateConfigurationSetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateConfigurationSetRequest; output: {}; }; sdk: { input: CreateConfigurationSetCommandInput; output: CreateConfigurationSetCommandOutput; }; }; }