import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetReplicationSetInput, GetReplicationSetOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetReplicationSetCommand}. */ export interface GetReplicationSetCommandInput extends GetReplicationSetInput { } /** * @public * * The output of {@link GetReplicationSetCommand}. */ export interface GetReplicationSetCommandOutput extends GetReplicationSetOutput, __MetadataBearer { } declare const GetReplicationSetCommand_base: { new (input: GetReplicationSetCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetReplicationSetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieve your Incident Manager replication set.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMIncidentsClient, GetReplicationSetCommand } from "@aws-sdk/client-ssm-incidents"; // ES Modules import * // const { SSMIncidentsClient, GetReplicationSetCommand } = 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 = { // GetReplicationSetInput * arn: "STRING_VALUE", // required * }; * const command = new GetReplicationSetCommand(input); * const response = await client.send(command); * // { // GetReplicationSetOutput * // replicationSet: { // ReplicationSet * // arn: "STRING_VALUE", * // regionMap: { // RegionInfoMap // required * // "": { // RegionInfo * // sseKmsKeyId: "STRING_VALUE", * // status: "STRING_VALUE", // required * // statusMessage: "STRING_VALUE", * // statusUpdateDateTime: new Date("TIMESTAMP"), // required * // }, * // }, * // status: "STRING_VALUE", // required * // deletionProtected: true || false, // required * // createdTime: new Date("TIMESTAMP"), // required * // createdBy: "STRING_VALUE", // required * // lastModifiedTime: new Date("TIMESTAMP"), // required * // lastModifiedBy: "STRING_VALUE", // required * // }, * // }; * * ``` * * @param GetReplicationSetCommandInput - {@link GetReplicationSetCommandInput} * @returns {@link GetReplicationSetCommandOutput} * @see {@link GetReplicationSetCommandInput} for command's `input` shape. * @see {@link GetReplicationSetCommandOutput} 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 InternalServerException} (server fault) *

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

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

Request references a resource which doesn't exist.

* * @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 GetReplicationSetCommand extends GetReplicationSetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetReplicationSetInput; output: GetReplicationSetOutput; }; sdk: { input: GetReplicationSetCommandInput; output: GetReplicationSetCommandOutput; }; }; }