import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import type { ReplicateInstanceRequest, ReplicateInstanceResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ReplicateInstanceCommand}. */ export interface ReplicateInstanceCommandInput extends ReplicateInstanceRequest { } /** * @public * * The output of {@link ReplicateInstanceCommand}. */ export interface ReplicateInstanceCommandOutput extends ReplicateInstanceResponse, __MetadataBearer { } declare const ReplicateInstanceCommand_base: { new (input: ReplicateInstanceCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ReplicateInstanceCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Replicates an Amazon Connect instance in the specified Amazon Web Services Region and copies configuration * information for Amazon Connect resources across Amazon Web Services Regions.

*

For more information about replicating an Amazon Connect instance, see Create a replica of your existing Amazon Connect * instance in the Amazon Connect Administrator Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConnectClient, ReplicateInstanceCommand } from "@aws-sdk/client-connect"; // ES Modules import * // const { ConnectClient, ReplicateInstanceCommand } = require("@aws-sdk/client-connect"); // CommonJS import * // import type { ConnectClientConfig } from "@aws-sdk/client-connect"; * const config = {}; // type is ConnectClientConfig * const client = new ConnectClient(config); * const input = { // ReplicateInstanceRequest * InstanceId: "STRING_VALUE", // required * ReplicaRegion: "STRING_VALUE", // required * ClientToken: "STRING_VALUE", * ReplicaAlias: "STRING_VALUE", // required * }; * const command = new ReplicateInstanceCommand(input); * const response = await client.send(command); * // { // ReplicateInstanceResponse * // Id: "STRING_VALUE", * // Arn: "STRING_VALUE", * // }; * * ``` * * @param ReplicateInstanceCommandInput - {@link ReplicateInstanceCommandInput} * @returns {@link ReplicateInstanceCommandOutput} * @see {@link ReplicateInstanceCommandInput} for command's `input` shape. * @see {@link ReplicateInstanceCommandOutput} for command's `response` shape. * @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient permissions to perform this action.

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

Request processing failed because of an error or failure with the service.

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

The request is not valid.

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

A resource already has that name.

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

The specified resource was not found.

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

The resource is not ready.

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

The service quota has been exceeded.

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

The throttling limit has been exceeded.

* * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* * * @public */ export declare class ReplicateInstanceCommand extends ReplicateInstanceCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ReplicateInstanceRequest; output: ReplicateInstanceResponse; }; sdk: { input: ReplicateInstanceCommandInput; output: ReplicateInstanceCommandOutput; }; }; }