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

Creates an empty receipt rule set.

*

For information about setting up receipt rule 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, CreateReceiptRuleSetCommand } from "@aws-sdk/client-ses"; // ES Modules import * // const { SESClient, CreateReceiptRuleSetCommand } = 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 = { // CreateReceiptRuleSetRequest * RuleSetName: "STRING_VALUE", // required * }; * const command = new CreateReceiptRuleSetCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param CreateReceiptRuleSetCommandInput - {@link CreateReceiptRuleSetCommandInput} * @returns {@link CreateReceiptRuleSetCommandOutput} * @see {@link CreateReceiptRuleSetCommandInput} for command's `input` shape. * @see {@link CreateReceiptRuleSetCommandOutput} for command's `response` shape. * @see {@link SESClientResolvedConfig | config} for SESClient's `config` shape. * * @throws {@link AlreadyExistsException} (client fault) *

Indicates that a resource could not be created because of a naming conflict.

* * @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.

* * * @example CreateReceiptRuleSet * ```javascript * // The following example creates an empty receipt rule set: * const input = { * RuleSetName: "MyRuleSet" * }; * const command = new CreateReceiptRuleSetCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class CreateReceiptRuleSetCommand extends CreateReceiptRuleSetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateReceiptRuleSetRequest; output: {}; }; sdk: { input: CreateReceiptRuleSetCommandInput; output: CreateReceiptRuleSetCommandOutput; }; }; }