import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateReplicationSetInput, CreateReplicationSetOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateReplicationSetCommand}. */ export interface CreateReplicationSetCommandInput extends CreateReplicationSetInput { } /** * @public * * The output of {@link CreateReplicationSetCommand}. */ export interface CreateReplicationSetCommandOutput extends CreateReplicationSetOutput, __MetadataBearer { } declare const CreateReplicationSetCommand_base: { new (input: CreateReplicationSetCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateReplicationSetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

A replication set replicates and encrypts your data to the provided Regions with the * provided KMS key.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMIncidentsClient, CreateReplicationSetCommand } from "@aws-sdk/client-ssm-incidents"; // ES Modules import * // const { SSMIncidentsClient, CreateReplicationSetCommand } = require("@aws-sdk/client-ssm-incidents"); // CommonJS import * // import type { SSMIncidentsClientConfig } from "@aws-sdk/client-ssm-incidents"; * const config = {}; // type is SSMIncidentsClientConfig * const client = new SSMIncidentsClient(config); * const input = { // CreateReplicationSetInput * regions: { // RegionMapInput // required * "": { // RegionMapInputValue * sseKmsKeyId: "STRING_VALUE", * }, * }, * clientToken: "STRING_VALUE", * tags: { // TagMap * "": "STRING_VALUE", * }, * }; * const command = new CreateReplicationSetCommand(input); * const response = await client.send(command); * // { // CreateReplicationSetOutput * // arn: "STRING_VALUE", // required * // }; * * ``` * * @param CreateReplicationSetCommandInput - {@link CreateReplicationSetCommandInput} * @returns {@link CreateReplicationSetCommandOutput} * @see {@link CreateReplicationSetCommandInput} for command's `input` shape. * @see {@link CreateReplicationSetCommandOutput} for command's `response` shape. * @see {@link SSMIncidentsClientResolvedConfig | config} for SSMIncidentsClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient access to perform this operation.

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

Updating or deleting a resource causes an inconsistent state.

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

The request processing has failed because of an unknown error, exception or * failure.

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

Request would cause a service quota to be exceeded.

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

The request was denied due to request throttling.

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

The input fails to satisfy the constraints specified by an Amazon Web Services * service.

* * @throws {@link SSMIncidentsServiceException} *

Base exception class for all service exceptions from SSMIncidents service.

* * * @public */ export declare class CreateReplicationSetCommand extends CreateReplicationSetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateReplicationSetInput; output: CreateReplicationSetOutput; }; sdk: { input: CreateReplicationSetCommandInput; output: CreateReplicationSetCommandOutput; }; }; }