@aws-sdk/client-route53-recovery-readiness 3.289.0 → 3.290.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateCellCommand.d.ts +16 -0
- package/dist-types/commands/CreateCrossAccountAuthorizationCommand.d.ts +16 -0
- package/dist-types/commands/CreateReadinessCheckCommand.d.ts +16 -0
- package/dist-types/commands/CreateRecoveryGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCellCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCrossAccountAuthorizationCommand.d.ts +13 -0
- package/dist-types/commands/DeleteReadinessCheckCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRecoveryGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/GetArchitectureRecommendationsCommand.d.ts +16 -0
- package/dist-types/commands/GetCellCommand.d.ts +16 -0
- package/dist-types/commands/GetCellReadinessSummaryCommand.d.ts +16 -0
- package/dist-types/commands/GetReadinessCheckCommand.d.ts +16 -0
- package/dist-types/commands/GetReadinessCheckResourceStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetReadinessCheckStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetRecoveryGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetRecoveryGroupReadinessSummaryCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/ListCellsCommand.d.ts +13 -0
- package/dist-types/commands/ListCrossAccountAuthorizationsCommand.d.ts +13 -0
- package/dist-types/commands/ListReadinessChecksCommand.d.ts +13 -0
- package/dist-types/commands/ListRecoveryGroupsCommand.d.ts +13 -0
- package/dist-types/commands/ListResourceSetsCommand.d.ts +13 -0
- package/dist-types/commands/ListRulesCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourcesCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UpdateCellCommand.d.ts +16 -0
- package/dist-types/commands/UpdateReadinessCheckCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRecoveryGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResourceSetCommand.d.ts +16 -0
- package/package.json +29 -29
|
@@ -29,6 +29,22 @@ export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataB
|
|
|
29
29
|
* @see {@link CreateCellCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* An unexpected error occurred.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class CreateCellCommand extends $Command<CreateCellCommandInput, CreateCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: CreateCellCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCros
|
|
|
29
29
|
* @see {@link CreateCrossAccountAuthorizationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* An unexpected error occurred.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class CreateCrossAccountAuthorizationCommand extends $Command<CreateCrossAccountAuthorizationCommandInput, CreateCrossAccountAuthorizationCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: CreateCrossAccountAuthorizationCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckR
|
|
|
29
29
|
* @see {@link CreateReadinessCheckCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* An unexpected error occurred.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class CreateReadinessCheckCommand extends $Command<CreateReadinessCheckCommandInput, CreateReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: CreateReadinessCheckCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupRes
|
|
|
29
29
|
* @see {@link CreateRecoveryGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* An unexpected error occurred.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class CreateRecoveryGroupCommand extends $Command<CreateRecoveryGroupCommandInput, CreateRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: CreateRecoveryGroupCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface CreateResourceSetCommandOutput extends CreateResourceSetRespons
|
|
|
29
29
|
* @see {@link CreateResourceSetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* An unexpected error occurred.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class CreateResourceSetCommand extends $Command<CreateResourceSetCommandInput, CreateResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: CreateResourceSetCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteCellCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteCellCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteCellCommand extends $Command<DeleteCellCommandInput, DeleteCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteCellCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteCrossAccountAuthorizationCommandOutput extends DeleteCros
|
|
|
29
29
|
* @see {@link DeleteCrossAccountAuthorizationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* Request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteCrossAccountAuthorizationCommand extends $Command<DeleteCrossAccountAuthorizationCommandInput, DeleteCrossAccountAuthorizationCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteCrossAccountAuthorizationCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteReadinessCheckCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteReadinessCheckCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteReadinessCheckCommand extends $Command<DeleteReadinessCheckCommandInput, DeleteReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteReadinessCheckCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteRecoveryGroupCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteRecoveryGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteRecoveryGroupCommand extends $Command<DeleteRecoveryGroupCommandInput, DeleteRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteRecoveryGroupCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteResourceSetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteResourceSetCommand extends $Command<DeleteResourceSetCommandInput, DeleteResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteResourceSetCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetArchitectureRecommendationsCommandOutput extends GetArchitec
|
|
|
29
29
|
* @see {@link GetArchitectureRecommendationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetArchitectureRecommendationsCommand extends $Command<GetArchitectureRecommendationsCommandInput, GetArchitectureRecommendationsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetArchitectureRecommendationsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetCellCommandOutput extends GetCellResponse, __MetadataBearer
|
|
|
29
29
|
* @see {@link GetCellCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetCellCommand extends $Command<GetCellCommandInput, GetCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetCellCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetCellReadinessSummaryCommandOutput extends GetCellReadinessSu
|
|
|
29
29
|
* @see {@link GetCellReadinessSummaryCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetCellReadinessSummaryCommand extends $Command<GetCellReadinessSummaryCommandInput, GetCellReadinessSummaryCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetCellReadinessSummaryCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetReadinessCheckCommandOutput extends GetReadinessCheckRespons
|
|
|
29
29
|
* @see {@link GetReadinessCheckCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetReadinessCheckCommand extends $Command<GetReadinessCheckCommandInput, GetReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetReadinessCheckCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetReadinessCheckResourceStatusCommandOutput extends GetReadine
|
|
|
29
29
|
* @see {@link GetReadinessCheckResourceStatusCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetReadinessCheckResourceStatusCommand extends $Command<GetReadinessCheckResourceStatusCommandInput, GetReadinessCheckResourceStatusCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetReadinessCheckResourceStatusCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetReadinessCheckStatusCommandOutput extends GetReadinessCheckS
|
|
|
29
29
|
* @see {@link GetReadinessCheckStatusCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetReadinessCheckStatusCommand extends $Command<GetReadinessCheckStatusCommandInput, GetReadinessCheckStatusCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetReadinessCheckStatusCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetRecoveryGroupCommandOutput extends GetRecoveryGroupResponse,
|
|
|
29
29
|
* @see {@link GetRecoveryGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetRecoveryGroupCommand extends $Command<GetRecoveryGroupCommandInput, GetRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetRecoveryGroupCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetRecoveryGroupReadinessSummaryCommandOutput extends GetRecove
|
|
|
29
29
|
* @see {@link GetRecoveryGroupReadinessSummaryCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetRecoveryGroupReadinessSummaryCommand extends $Command<GetRecoveryGroupReadinessSummaryCommandInput, GetRecoveryGroupReadinessSummaryCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetRecoveryGroupReadinessSummaryCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetResourceSetCommandOutput extends GetResourceSetResponse, __M
|
|
|
29
29
|
* @see {@link GetResourceSetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetResourceSetCommand extends $Command<GetResourceSetCommandInput, GetResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: GetResourceSetCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListCellsCommandOutput extends ListCellsResponse, __MetadataBea
|
|
|
29
29
|
* @see {@link ListCellsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* Request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListCellsCommand extends $Command<ListCellsCommandInput, ListCellsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
47
|
readonly input: ListCellsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListCrossAccountAuthorizationsCommandOutput extends ListCrossAc
|
|
|
29
29
|
* @see {@link ListCrossAccountAuthorizationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* Request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListCrossAccountAuthorizationsCommand extends $Command<ListCrossAccountAuthorizationsCommandInput, ListCrossAccountAuthorizationsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
47
|
readonly input: ListCrossAccountAuthorizationsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListReadinessChecksCommandOutput extends ListReadinessChecksRes
|
|
|
29
29
|
* @see {@link ListReadinessChecksCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* Request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListReadinessChecksCommand extends $Command<ListReadinessChecksCommandInput, ListReadinessChecksCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
47
|
readonly input: ListReadinessChecksCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListRecoveryGroupsCommandOutput extends ListRecoveryGroupsRespo
|
|
|
29
29
|
* @see {@link ListRecoveryGroupsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* Request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListRecoveryGroupsCommand extends $Command<ListRecoveryGroupsCommandInput, ListRecoveryGroupsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
47
|
readonly input: ListRecoveryGroupsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListResourceSetsCommandOutput extends ListResourceSetsResponse,
|
|
|
29
29
|
* @see {@link ListResourceSetsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* Request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListResourceSetsCommand extends $Command<ListResourceSetsCommandInput, ListResourceSetsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
47
|
readonly input: ListResourceSetsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
|
|
|
29
29
|
* @see {@link ListRulesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* Request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListRulesCommand extends $Command<ListRulesCommandInput, ListRulesCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
47
|
readonly input: ListRulesCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface ListTagsForResourcesCommandOutput extends ListTagsForResourcesR
|
|
|
29
29
|
* @see {@link ListTagsForResourcesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* An unexpected error occurred.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* The requested resource does not exist.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class ListTagsForResourcesCommand extends $Command<ListTagsForResourcesCommandInput, ListTagsForResourcesCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
44
|
readonly input: ListTagsForResourcesCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* An unexpected error occurred.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* The requested resource does not exist.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
44
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* An unexpected error occurred.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* The requested resource does not exist.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
44
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateCellCommandOutput extends UpdateCellResponse, __MetadataB
|
|
|
29
29
|
* @see {@link UpdateCellCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateCellCommand extends $Command<UpdateCellCommandInput, UpdateCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateCellCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateReadinessCheckCommandOutput extends UpdateReadinessCheckR
|
|
|
29
29
|
* @see {@link UpdateReadinessCheckCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateReadinessCheckCommand extends $Command<UpdateReadinessCheckCommandInput, UpdateReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateReadinessCheckCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateRecoveryGroupCommandOutput extends UpdateRecoveryGroupRes
|
|
|
29
29
|
* @see {@link UpdateRecoveryGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateRecoveryGroupCommand extends $Command<UpdateRecoveryGroupCommandInput, UpdateRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateRecoveryGroupCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateResourceSetCommandOutput extends UpdateResourceSetRespons
|
|
|
29
29
|
* @see {@link UpdateResourceSetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link Route53RecoveryReadinessClientResolvedConfig | config} for Route53RecoveryReadinessClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* An unexpected error occurred.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* The requested resource does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateResourceSetCommand extends $Command<UpdateResourceSetCommandInput, UpdateResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateResourceSetCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53-recovery-readiness",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53 Recovery Readiness Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|