@aws-sdk/client-route53-recovery-readiness 3.325.0 → 3.327.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 +6 -0
- package/dist-types/commands/CreateReadinessCheckCommand.d.ts +11 -0
- package/dist-types/commands/CreateRecoveryGroupCommand.d.ts +13 -0
- package/dist-types/commands/CreateResourceSetCommand.d.ts +35 -0
- package/dist-types/commands/DeleteCellCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCrossAccountAuthorizationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReadinessCheckCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRecoveryGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteResourceSetCommand.d.ts +4 -0
- package/dist-types/commands/GetArchitectureRecommendationsCommand.d.ts +12 -0
- package/dist-types/commands/GetCellCommand.d.ts +16 -0
- package/dist-types/commands/GetCellReadinessSummaryCommand.d.ts +13 -0
- package/dist-types/commands/GetReadinessCheckCommand.d.ts +11 -0
- package/dist-types/commands/GetReadinessCheckResourceStatusCommand.d.ts +19 -0
- package/dist-types/commands/GetReadinessCheckStatusCommand.d.ts +20 -0
- package/dist-types/commands/GetRecoveryGroupCommand.d.ts +13 -0
- package/dist-types/commands/GetRecoveryGroupReadinessSummaryCommand.d.ts +13 -0
- package/dist-types/commands/GetResourceSetCommand.d.ts +35 -0
- package/dist-types/commands/ListCellsCommand.d.ts +21 -0
- package/dist-types/commands/ListCrossAccountAuthorizationsCommand.d.ts +9 -0
- package/dist-types/commands/ListReadinessChecksCommand.d.ts +16 -0
- package/dist-types/commands/ListRecoveryGroupsCommand.d.ts +18 -0
- package/dist-types/commands/ListResourceSetsCommand.d.ts +40 -0
- package/dist-types/commands/ListRulesCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourcesCommand.d.ts +8 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateCellCommand.d.ts +16 -0
- package/dist-types/commands/UpdateReadinessCheckCommand.d.ts +11 -0
- package/dist-types/commands/UpdateRecoveryGroupCommand.d.ts +13 -0
- package/dist-types/commands/UpdateResourceSetCommand.d.ts +35 -0
- package/package.json +7 -7
|
@@ -37,6 +37,20 @@ export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataB
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new CreateCellCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // CreateCellResponse
|
|
41
|
+
* // CellArn: "STRING_VALUE",
|
|
42
|
+
* // CellName: "STRING_VALUE",
|
|
43
|
+
* // Cells: [ // __listOf__string
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // ParentReadinessScopes: [
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // Tags: { // Tags
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
40
54
|
* ```
|
|
41
55
|
*
|
|
42
56
|
* @param CreateCellCommandInput - {@link CreateCellCommandInput}
|
|
@@ -60,6 +74,8 @@ export interface CreateCellCommandOutput extends CreateCellResponse, __MetadataB
|
|
|
60
74
|
* @throws {@link ValidationException} (client fault)
|
|
61
75
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
62
76
|
*
|
|
77
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
63
79
|
*
|
|
64
80
|
*/
|
|
65
81
|
export declare class CreateCellCommand extends $Command<CreateCellCommandInput, CreateCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCros
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CreateCrossAccountAuthorizationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // CreateCrossAccountAuthorizationResponse
|
|
35
|
+
* // CrossAccountAuthorization: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param CreateCrossAccountAuthorizationCommandInput - {@link CreateCrossAccountAuthorizationCommandInput}
|
|
@@ -54,6 +58,8 @@ export interface CreateCrossAccountAuthorizationCommandOutput extends CreateCros
|
|
|
54
58
|
* @throws {@link ValidationException} (client fault)
|
|
55
59
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
60
|
*
|
|
61
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
63
|
*
|
|
58
64
|
*/
|
|
59
65
|
export declare class CreateCrossAccountAuthorizationCommand extends $Command<CreateCrossAccountAuthorizationCommandInput, CreateCrossAccountAuthorizationCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -35,6 +35,15 @@ export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckR
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateReadinessCheckCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreateReadinessCheckResponse
|
|
39
|
+
* // ReadinessCheckArn: "STRING_VALUE",
|
|
40
|
+
* // ReadinessCheckName: "STRING_VALUE",
|
|
41
|
+
* // ResourceSet: "STRING_VALUE",
|
|
42
|
+
* // Tags: { // Tags
|
|
43
|
+
* // "<keys>": "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
38
47
|
* ```
|
|
39
48
|
*
|
|
40
49
|
* @param CreateReadinessCheckCommandInput - {@link CreateReadinessCheckCommandInput}
|
|
@@ -58,6 +67,8 @@ export interface CreateReadinessCheckCommandOutput extends CreateReadinessCheckR
|
|
|
58
67
|
* @throws {@link ValidationException} (client fault)
|
|
59
68
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
60
69
|
*
|
|
70
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
61
72
|
*
|
|
62
73
|
*/
|
|
63
74
|
export declare class CreateReadinessCheckCommand extends $Command<CreateReadinessCheckCommandInput, CreateReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -37,6 +37,17 @@ export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupRes
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new CreateRecoveryGroupCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // CreateRecoveryGroupResponse
|
|
41
|
+
* // Cells: [ // __listOf__string
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // RecoveryGroupArn: "STRING_VALUE",
|
|
45
|
+
* // RecoveryGroupName: "STRING_VALUE",
|
|
46
|
+
* // Tags: { // Tags
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
40
51
|
* ```
|
|
41
52
|
*
|
|
42
53
|
* @param CreateRecoveryGroupCommandInput - {@link CreateRecoveryGroupCommandInput}
|
|
@@ -60,6 +71,8 @@ export interface CreateRecoveryGroupCommandOutput extends CreateRecoveryGroupRes
|
|
|
60
71
|
* @throws {@link ValidationException} (client fault)
|
|
61
72
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
62
73
|
*
|
|
74
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
63
76
|
*
|
|
64
77
|
*/
|
|
65
78
|
export declare class CreateRecoveryGroupCommand extends $Command<CreateRecoveryGroupCommandInput, CreateRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -59,6 +59,39 @@ export interface CreateResourceSetCommandOutput extends CreateResourceSetRespons
|
|
|
59
59
|
* };
|
|
60
60
|
* const command = new CreateResourceSetCommand(input);
|
|
61
61
|
* const response = await client.send(command);
|
|
62
|
+
* // { // CreateResourceSetResponse
|
|
63
|
+
* // ResourceSetArn: "STRING_VALUE",
|
|
64
|
+
* // ResourceSetName: "STRING_VALUE",
|
|
65
|
+
* // ResourceSetType: "STRING_VALUE",
|
|
66
|
+
* // Resources: [ // __listOfResource
|
|
67
|
+
* // { // Resource
|
|
68
|
+
* // ComponentId: "STRING_VALUE",
|
|
69
|
+
* // DnsTargetResource: { // DNSTargetResource
|
|
70
|
+
* // DomainName: "STRING_VALUE",
|
|
71
|
+
* // HostedZoneArn: "STRING_VALUE",
|
|
72
|
+
* // RecordSetId: "STRING_VALUE",
|
|
73
|
+
* // RecordType: "STRING_VALUE",
|
|
74
|
+
* // TargetResource: { // TargetResource
|
|
75
|
+
* // NLBResource: { // NLBResource
|
|
76
|
+
* // Arn: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // R53Resource: { // R53ResourceRecord
|
|
79
|
+
* // DomainName: "STRING_VALUE",
|
|
80
|
+
* // RecordSetId: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // },
|
|
83
|
+
* // },
|
|
84
|
+
* // ReadinessScopes: [ // __listOf__string
|
|
85
|
+
* // "STRING_VALUE",
|
|
86
|
+
* // ],
|
|
87
|
+
* // ResourceArn: "STRING_VALUE",
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // Tags: { // Tags
|
|
91
|
+
* // "<keys>": "STRING_VALUE",
|
|
92
|
+
* // },
|
|
93
|
+
* // };
|
|
94
|
+
*
|
|
62
95
|
* ```
|
|
63
96
|
*
|
|
64
97
|
* @param CreateResourceSetCommandInput - {@link CreateResourceSetCommandInput}
|
|
@@ -82,6 +115,8 @@ export interface CreateResourceSetCommandOutput extends CreateResourceSetRespons
|
|
|
82
115
|
* @throws {@link ValidationException} (client fault)
|
|
83
116
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
84
117
|
*
|
|
118
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
119
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
85
120
|
*
|
|
86
121
|
*/
|
|
87
122
|
export declare class CreateResourceSetCommand extends $Command<CreateResourceSetCommandInput, CreateResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteCellCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCellCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteCellCommandInput - {@link DeleteCellCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteCellCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteCellCommand extends $Command<DeleteCellCommandInput, DeleteCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteCrossAccountAuthorizationCommandOutput extends DeleteCros
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCrossAccountAuthorizationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteCrossAccountAuthorizationCommandInput - {@link DeleteCrossAccountAuthorizationCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface DeleteCrossAccountAuthorizationCommandOutput extends DeleteCros
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class DeleteCrossAccountAuthorizationCommand extends $Command<DeleteCrossAccountAuthorizationCommandInput, DeleteCrossAccountAuthorizationCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteReadinessCheckCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteReadinessCheckCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteReadinessCheckCommandInput - {@link DeleteReadinessCheckCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteReadinessCheckCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteReadinessCheckCommand extends $Command<DeleteReadinessCheckCommandInput, DeleteReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteRecoveryGroupCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteRecoveryGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteRecoveryGroupCommandInput - {@link DeleteRecoveryGroupCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteRecoveryGroupCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteRecoveryGroupCommand extends $Command<DeleteRecoveryGroupCommandInput, DeleteRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteResourceSetCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteResourceSetCommandInput - {@link DeleteResourceSetCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteResourceSetCommand extends $Command<DeleteResourceSetCommandInput, DeleteResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -33,6 +33,16 @@ export interface GetArchitectureRecommendationsCommandOutput extends GetArchitec
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetArchitectureRecommendationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetArchitectureRecommendationsResponse
|
|
37
|
+
* // LastAuditTimestamp: new Date("TIMESTAMP"),
|
|
38
|
+
* // NextToken: "STRING_VALUE",
|
|
39
|
+
* // Recommendations: [ // __listOfRecommendation
|
|
40
|
+
* // { // Recommendation
|
|
41
|
+
* // RecommendationText: "STRING_VALUE", // required
|
|
42
|
+
* // },
|
|
43
|
+
* // ],
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
36
46
|
* ```
|
|
37
47
|
*
|
|
38
48
|
* @param GetArchitectureRecommendationsCommandInput - {@link GetArchitectureRecommendationsCommandInput}
|
|
@@ -56,6 +66,8 @@ export interface GetArchitectureRecommendationsCommandOutput extends GetArchitec
|
|
|
56
66
|
* @throws {@link ValidationException} (client fault)
|
|
57
67
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
58
68
|
*
|
|
69
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
59
71
|
*
|
|
60
72
|
*/
|
|
61
73
|
export declare class GetArchitectureRecommendationsCommand extends $Command<GetArchitectureRecommendationsCommandInput, GetArchitectureRecommendationsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,20 @@ export interface GetCellCommandOutput extends GetCellResponse, __MetadataBearer
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCellCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetCellResponse
|
|
35
|
+
* // CellArn: "STRING_VALUE",
|
|
36
|
+
* // CellName: "STRING_VALUE",
|
|
37
|
+
* // Cells: [ // __listOf__string
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // ParentReadinessScopes: [
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // Tags: { // Tags
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
34
48
|
* ```
|
|
35
49
|
*
|
|
36
50
|
* @param GetCellCommandInput - {@link GetCellCommandInput}
|
|
@@ -54,6 +68,8 @@ export interface GetCellCommandOutput extends GetCellResponse, __MetadataBearer
|
|
|
54
68
|
* @throws {@link ValidationException} (client fault)
|
|
55
69
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
70
|
*
|
|
71
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
73
|
*
|
|
58
74
|
*/
|
|
59
75
|
export declare class GetCellCommand extends $Command<GetCellCommandInput, GetCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -33,6 +33,17 @@ export interface GetCellReadinessSummaryCommandOutput extends GetCellReadinessSu
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetCellReadinessSummaryCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetCellReadinessSummaryResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // Readiness: "STRING_VALUE",
|
|
39
|
+
* // ReadinessChecks: [ // __listOfReadinessCheckSummary
|
|
40
|
+
* // { // ReadinessCheckSummary
|
|
41
|
+
* // Readiness: "STRING_VALUE",
|
|
42
|
+
* // ReadinessCheckName: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
36
47
|
* ```
|
|
37
48
|
*
|
|
38
49
|
* @param GetCellReadinessSummaryCommandInput - {@link GetCellReadinessSummaryCommandInput}
|
|
@@ -56,6 +67,8 @@ export interface GetCellReadinessSummaryCommandOutput extends GetCellReadinessSu
|
|
|
56
67
|
* @throws {@link ValidationException} (client fault)
|
|
57
68
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
58
69
|
*
|
|
70
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
59
72
|
*
|
|
60
73
|
*/
|
|
61
74
|
export declare class GetCellReadinessSummaryCommand extends $Command<GetCellReadinessSummaryCommandInput, GetCellReadinessSummaryCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface GetReadinessCheckCommandOutput extends GetReadinessCheckRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetReadinessCheckCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetReadinessCheckResponse
|
|
35
|
+
* // ReadinessCheckArn: "STRING_VALUE",
|
|
36
|
+
* // ReadinessCheckName: "STRING_VALUE",
|
|
37
|
+
* // ResourceSet: "STRING_VALUE",
|
|
38
|
+
* // Tags: { // Tags
|
|
39
|
+
* // "<keys>": "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param GetReadinessCheckCommandInput - {@link GetReadinessCheckCommandInput}
|
|
@@ -54,6 +63,8 @@ export interface GetReadinessCheckCommandOutput extends GetReadinessCheckRespons
|
|
|
54
63
|
* @throws {@link ValidationException} (client fault)
|
|
55
64
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
65
|
*
|
|
66
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
68
|
*
|
|
58
69
|
*/
|
|
59
70
|
export declare class GetReadinessCheckCommand extends $Command<GetReadinessCheckCommandInput, GetReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -34,6 +34,23 @@ export interface GetReadinessCheckResourceStatusCommandOutput extends GetReadine
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetReadinessCheckResourceStatusCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetReadinessCheckResourceStatusResponse
|
|
38
|
+
* // NextToken: "STRING_VALUE",
|
|
39
|
+
* // Readiness: "STRING_VALUE",
|
|
40
|
+
* // Rules: [ // __listOfRuleResult
|
|
41
|
+
* // { // RuleResult
|
|
42
|
+
* // LastCheckedTimestamp: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // Messages: [ // __listOfMessage // required
|
|
44
|
+
* // { // Message
|
|
45
|
+
* // MessageText: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // Readiness: "STRING_VALUE", // required
|
|
49
|
+
* // RuleId: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
37
54
|
* ```
|
|
38
55
|
*
|
|
39
56
|
* @param GetReadinessCheckResourceStatusCommandInput - {@link GetReadinessCheckResourceStatusCommandInput}
|
|
@@ -57,6 +74,8 @@ export interface GetReadinessCheckResourceStatusCommandOutput extends GetReadine
|
|
|
57
74
|
* @throws {@link ValidationException} (client fault)
|
|
58
75
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
76
|
*
|
|
77
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
60
79
|
*
|
|
61
80
|
*/
|
|
62
81
|
export declare class GetReadinessCheckResourceStatusCommand extends $Command<GetReadinessCheckResourceStatusCommandInput, GetReadinessCheckResourceStatusCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -33,6 +33,24 @@ export interface GetReadinessCheckStatusCommandOutput extends GetReadinessCheckS
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetReadinessCheckStatusCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetReadinessCheckStatusResponse
|
|
37
|
+
* // Messages: [ // __listOfMessage
|
|
38
|
+
* // { // Message
|
|
39
|
+
* // MessageText: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // ],
|
|
42
|
+
* // NextToken: "STRING_VALUE",
|
|
43
|
+
* // Readiness: "STRING_VALUE",
|
|
44
|
+
* // Resources: [ // __listOfResourceResult
|
|
45
|
+
* // { // ResourceResult
|
|
46
|
+
* // ComponentId: "STRING_VALUE",
|
|
47
|
+
* // LastCheckedTimestamp: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // Readiness: "STRING_VALUE", // required
|
|
49
|
+
* // ResourceArn: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
36
54
|
* ```
|
|
37
55
|
*
|
|
38
56
|
* @param GetReadinessCheckStatusCommandInput - {@link GetReadinessCheckStatusCommandInput}
|
|
@@ -56,6 +74,8 @@ export interface GetReadinessCheckStatusCommandOutput extends GetReadinessCheckS
|
|
|
56
74
|
* @throws {@link ValidationException} (client fault)
|
|
57
75
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
58
76
|
*
|
|
77
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
59
79
|
*
|
|
60
80
|
*/
|
|
61
81
|
export declare class GetReadinessCheckStatusCommand extends $Command<GetReadinessCheckStatusCommandInput, GetReadinessCheckStatusCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,17 @@ export interface GetRecoveryGroupCommandOutput extends GetRecoveryGroupResponse,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetRecoveryGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetRecoveryGroupResponse
|
|
35
|
+
* // Cells: [ // __listOf__string
|
|
36
|
+
* // "STRING_VALUE",
|
|
37
|
+
* // ],
|
|
38
|
+
* // RecoveryGroupArn: "STRING_VALUE",
|
|
39
|
+
* // RecoveryGroupName: "STRING_VALUE",
|
|
40
|
+
* // Tags: { // Tags
|
|
41
|
+
* // "<keys>": "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param GetRecoveryGroupCommandInput - {@link GetRecoveryGroupCommandInput}
|
|
@@ -54,6 +65,8 @@ export interface GetRecoveryGroupCommandOutput extends GetRecoveryGroupResponse,
|
|
|
54
65
|
* @throws {@link ValidationException} (client fault)
|
|
55
66
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
67
|
*
|
|
68
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
70
|
*
|
|
58
71
|
*/
|
|
59
72
|
export declare class GetRecoveryGroupCommand extends $Command<GetRecoveryGroupCommandInput, GetRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -33,6 +33,17 @@ export interface GetRecoveryGroupReadinessSummaryCommandOutput extends GetRecove
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetRecoveryGroupReadinessSummaryCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetRecoveryGroupReadinessSummaryResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // Readiness: "STRING_VALUE",
|
|
39
|
+
* // ReadinessChecks: [ // __listOfReadinessCheckSummary
|
|
40
|
+
* // { // ReadinessCheckSummary
|
|
41
|
+
* // Readiness: "STRING_VALUE",
|
|
42
|
+
* // ReadinessCheckName: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
36
47
|
* ```
|
|
37
48
|
*
|
|
38
49
|
* @param GetRecoveryGroupReadinessSummaryCommandInput - {@link GetRecoveryGroupReadinessSummaryCommandInput}
|
|
@@ -56,6 +67,8 @@ export interface GetRecoveryGroupReadinessSummaryCommandOutput extends GetRecove
|
|
|
56
67
|
* @throws {@link ValidationException} (client fault)
|
|
57
68
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
58
69
|
*
|
|
70
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
59
72
|
*
|
|
60
73
|
*/
|
|
61
74
|
export declare class GetRecoveryGroupReadinessSummaryCommand extends $Command<GetRecoveryGroupReadinessSummaryCommandInput, GetRecoveryGroupReadinessSummaryCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,39 @@ export interface GetResourceSetCommandOutput extends GetResourceSetResponse, __M
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetResourceSetCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetResourceSetResponse
|
|
35
|
+
* // ResourceSetArn: "STRING_VALUE",
|
|
36
|
+
* // ResourceSetName: "STRING_VALUE",
|
|
37
|
+
* // ResourceSetType: "STRING_VALUE",
|
|
38
|
+
* // Resources: [ // __listOfResource
|
|
39
|
+
* // { // Resource
|
|
40
|
+
* // ComponentId: "STRING_VALUE",
|
|
41
|
+
* // DnsTargetResource: { // DNSTargetResource
|
|
42
|
+
* // DomainName: "STRING_VALUE",
|
|
43
|
+
* // HostedZoneArn: "STRING_VALUE",
|
|
44
|
+
* // RecordSetId: "STRING_VALUE",
|
|
45
|
+
* // RecordType: "STRING_VALUE",
|
|
46
|
+
* // TargetResource: { // TargetResource
|
|
47
|
+
* // NLBResource: { // NLBResource
|
|
48
|
+
* // Arn: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // R53Resource: { // R53ResourceRecord
|
|
51
|
+
* // DomainName: "STRING_VALUE",
|
|
52
|
+
* // RecordSetId: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // ReadinessScopes: [ // __listOf__string
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // ResourceArn: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // Tags: { // Tags
|
|
63
|
+
* // "<keys>": "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
34
67
|
* ```
|
|
35
68
|
*
|
|
36
69
|
* @param GetResourceSetCommandInput - {@link GetResourceSetCommandInput}
|
|
@@ -54,6 +87,8 @@ export interface GetResourceSetCommandOutput extends GetResourceSetResponse, __M
|
|
|
54
87
|
* @throws {@link ValidationException} (client fault)
|
|
55
88
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
89
|
*
|
|
90
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
57
92
|
*
|
|
58
93
|
*/
|
|
59
94
|
export declare class GetResourceSetCommand extends $Command<GetResourceSetCommandInput, GetResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -32,6 +32,25 @@ export interface ListCellsCommandOutput extends ListCellsResponse, __MetadataBea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListCellsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListCellsResponse
|
|
36
|
+
* // Cells: [ // __listOfCellOutput
|
|
37
|
+
* // { // CellOutput
|
|
38
|
+
* // CellArn: "STRING_VALUE", // required
|
|
39
|
+
* // CellName: "STRING_VALUE", // required
|
|
40
|
+
* // Cells: [ // __listOf__string // required
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // ParentReadinessScopes: [ // required
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // Tags: { // Tags
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // NextToken: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
35
54
|
* ```
|
|
36
55
|
*
|
|
37
56
|
* @param ListCellsCommandInput - {@link ListCellsCommandInput}
|
|
@@ -52,6 +71,8 @@ export interface ListCellsCommandOutput extends ListCellsResponse, __MetadataBea
|
|
|
52
71
|
* @throws {@link ValidationException} (client fault)
|
|
53
72
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
54
73
|
*
|
|
74
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
55
76
|
*
|
|
56
77
|
*/
|
|
57
78
|
export declare class ListCellsCommand extends $Command<ListCellsCommandInput, ListCellsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -32,6 +32,13 @@ export interface ListCrossAccountAuthorizationsCommandOutput extends ListCrossAc
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListCrossAccountAuthorizationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListCrossAccountAuthorizationsResponse
|
|
36
|
+
* // CrossAccountAuthorizations: [ // __listOfCrossAccountAuthorization
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // NextToken: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param ListCrossAccountAuthorizationsCommandInput - {@link ListCrossAccountAuthorizationsCommandInput}
|
|
@@ -52,6 +59,8 @@ export interface ListCrossAccountAuthorizationsCommandOutput extends ListCrossAc
|
|
|
52
59
|
* @throws {@link ValidationException} (client fault)
|
|
53
60
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
54
61
|
*
|
|
62
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
55
64
|
*
|
|
56
65
|
*/
|
|
57
66
|
export declare class ListCrossAccountAuthorizationsCommand extends $Command<ListCrossAccountAuthorizationsCommandInput, ListCrossAccountAuthorizationsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -32,6 +32,20 @@ export interface ListReadinessChecksCommandOutput extends ListReadinessChecksRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListReadinessChecksCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListReadinessChecksResponse
|
|
36
|
+
* // NextToken: "STRING_VALUE",
|
|
37
|
+
* // ReadinessChecks: [ // __listOfReadinessCheckOutput
|
|
38
|
+
* // { // ReadinessCheckOutput
|
|
39
|
+
* // ReadinessCheckArn: "STRING_VALUE", // required
|
|
40
|
+
* // ReadinessCheckName: "STRING_VALUE",
|
|
41
|
+
* // ResourceSet: "STRING_VALUE", // required
|
|
42
|
+
* // Tags: { // Tags
|
|
43
|
+
* // "<keys>": "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
35
49
|
* ```
|
|
36
50
|
*
|
|
37
51
|
* @param ListReadinessChecksCommandInput - {@link ListReadinessChecksCommandInput}
|
|
@@ -52,6 +66,8 @@ export interface ListReadinessChecksCommandOutput extends ListReadinessChecksRes
|
|
|
52
66
|
* @throws {@link ValidationException} (client fault)
|
|
53
67
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
54
68
|
*
|
|
69
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
55
71
|
*
|
|
56
72
|
*/
|
|
57
73
|
export declare class ListReadinessChecksCommand extends $Command<ListReadinessChecksCommandInput, ListReadinessChecksCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface ListRecoveryGroupsCommandOutput extends ListRecoveryGroupsRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListRecoveryGroupsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListRecoveryGroupsResponse
|
|
36
|
+
* // NextToken: "STRING_VALUE",
|
|
37
|
+
* // RecoveryGroups: [ // __listOfRecoveryGroupOutput
|
|
38
|
+
* // { // RecoveryGroupOutput
|
|
39
|
+
* // Cells: [ // __listOf__string // required
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // RecoveryGroupArn: "STRING_VALUE", // required
|
|
43
|
+
* // RecoveryGroupName: "STRING_VALUE", // required
|
|
44
|
+
* // Tags: { // Tags
|
|
45
|
+
* // "<keys>": "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param ListRecoveryGroupsCommandInput - {@link ListRecoveryGroupsCommandInput}
|
|
@@ -52,6 +68,8 @@ export interface ListRecoveryGroupsCommandOutput extends ListRecoveryGroupsRespo
|
|
|
52
68
|
* @throws {@link ValidationException} (client fault)
|
|
53
69
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
54
70
|
*
|
|
71
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
55
73
|
*
|
|
56
74
|
*/
|
|
57
75
|
export declare class ListRecoveryGroupsCommand extends $Command<ListRecoveryGroupsCommandInput, ListRecoveryGroupsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -32,6 +32,44 @@ export interface ListResourceSetsCommandOutput extends ListResourceSetsResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListResourceSetsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListResourceSetsResponse
|
|
36
|
+
* // NextToken: "STRING_VALUE",
|
|
37
|
+
* // ResourceSets: [ // __listOfResourceSetOutput
|
|
38
|
+
* // { // ResourceSetOutput
|
|
39
|
+
* // ResourceSetArn: "STRING_VALUE", // required
|
|
40
|
+
* // ResourceSetName: "STRING_VALUE", // required
|
|
41
|
+
* // ResourceSetType: "STRING_VALUE", // required
|
|
42
|
+
* // Resources: [ // __listOfResource // required
|
|
43
|
+
* // { // Resource
|
|
44
|
+
* // ComponentId: "STRING_VALUE",
|
|
45
|
+
* // DnsTargetResource: { // DNSTargetResource
|
|
46
|
+
* // DomainName: "STRING_VALUE",
|
|
47
|
+
* // HostedZoneArn: "STRING_VALUE",
|
|
48
|
+
* // RecordSetId: "STRING_VALUE",
|
|
49
|
+
* // RecordType: "STRING_VALUE",
|
|
50
|
+
* // TargetResource: { // TargetResource
|
|
51
|
+
* // NLBResource: { // NLBResource
|
|
52
|
+
* // Arn: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // R53Resource: { // R53ResourceRecord
|
|
55
|
+
* // DomainName: "STRING_VALUE",
|
|
56
|
+
* // RecordSetId: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // ReadinessScopes: [ // __listOf__string
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // ResourceArn: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // Tags: { // Tags
|
|
67
|
+
* // "<keys>": "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
35
73
|
* ```
|
|
36
74
|
*
|
|
37
75
|
* @param ListResourceSetsCommandInput - {@link ListResourceSetsCommandInput}
|
|
@@ -52,6 +90,8 @@ export interface ListResourceSetsCommandOutput extends ListResourceSetsResponse,
|
|
|
52
90
|
* @throws {@link ValidationException} (client fault)
|
|
53
91
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
54
92
|
*
|
|
93
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
55
95
|
*
|
|
56
96
|
*/
|
|
57
97
|
export declare class ListResourceSetsCommand extends $Command<ListResourceSetsCommandInput, ListResourceSetsCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -33,6 +33,17 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListRulesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListRulesResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // Rules: [ // __listOfListRulesOutput
|
|
39
|
+
* // { // ListRulesOutput
|
|
40
|
+
* // ResourceType: "STRING_VALUE", // required
|
|
41
|
+
* // RuleDescription: "STRING_VALUE", // required
|
|
42
|
+
* // RuleId: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
36
47
|
* ```
|
|
37
48
|
*
|
|
38
49
|
* @param ListRulesCommandInput - {@link ListRulesCommandInput}
|
|
@@ -53,6 +64,8 @@ export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBea
|
|
|
53
64
|
* @throws {@link ValidationException} (client fault)
|
|
54
65
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
55
66
|
*
|
|
67
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
56
69
|
*
|
|
57
70
|
*/
|
|
58
71
|
export declare class ListRulesCommand extends $Command<ListRulesCommandInput, ListRulesCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourcesCommandOutput extends ListTagsForResourcesR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourcesCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourcesResponse
|
|
35
|
+
* // Tags: { // Tags
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourcesCommandInput - {@link ListTagsForResourcesCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourcesCommandOutput extends ListTagsForResourcesR
|
|
|
48
54
|
* @throws {@link ValidationException} (client fault)
|
|
49
55
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourcesCommand extends $Command<ListTagsForResourcesCommandInput, ListTagsForResourcesCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -34,6 +34,20 @@ export interface UpdateCellCommandOutput extends UpdateCellResponse, __MetadataB
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateCellCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateCellResponse
|
|
38
|
+
* // CellArn: "STRING_VALUE",
|
|
39
|
+
* // CellName: "STRING_VALUE",
|
|
40
|
+
* // Cells: [ // __listOf__string
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // ParentReadinessScopes: [
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // Tags: { // Tags
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
37
51
|
* ```
|
|
38
52
|
*
|
|
39
53
|
* @param UpdateCellCommandInput - {@link UpdateCellCommandInput}
|
|
@@ -57,6 +71,8 @@ export interface UpdateCellCommandOutput extends UpdateCellResponse, __MetadataB
|
|
|
57
71
|
* @throws {@link ValidationException} (client fault)
|
|
58
72
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
73
|
*
|
|
74
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
60
76
|
*
|
|
61
77
|
*/
|
|
62
78
|
export declare class UpdateCellCommand extends $Command<UpdateCellCommandInput, UpdateCellCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -32,6 +32,15 @@ export interface UpdateReadinessCheckCommandOutput extends UpdateReadinessCheckR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateReadinessCheckCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateReadinessCheckResponse
|
|
36
|
+
* // ReadinessCheckArn: "STRING_VALUE",
|
|
37
|
+
* // ReadinessCheckName: "STRING_VALUE",
|
|
38
|
+
* // ResourceSet: "STRING_VALUE",
|
|
39
|
+
* // Tags: { // Tags
|
|
40
|
+
* // "<keys>": "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
35
44
|
* ```
|
|
36
45
|
*
|
|
37
46
|
* @param UpdateReadinessCheckCommandInput - {@link UpdateReadinessCheckCommandInput}
|
|
@@ -55,6 +64,8 @@ export interface UpdateReadinessCheckCommandOutput extends UpdateReadinessCheckR
|
|
|
55
64
|
* @throws {@link ValidationException} (client fault)
|
|
56
65
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
57
66
|
*
|
|
67
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
58
69
|
*
|
|
59
70
|
*/
|
|
60
71
|
export declare class UpdateReadinessCheckCommand extends $Command<UpdateReadinessCheckCommandInput, UpdateReadinessCheckCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -34,6 +34,17 @@ export interface UpdateRecoveryGroupCommandOutput extends UpdateRecoveryGroupRes
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateRecoveryGroupCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateRecoveryGroupResponse
|
|
38
|
+
* // Cells: [ // __listOf__string
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // RecoveryGroupArn: "STRING_VALUE",
|
|
42
|
+
* // RecoveryGroupName: "STRING_VALUE",
|
|
43
|
+
* // Tags: { // Tags
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
37
48
|
* ```
|
|
38
49
|
*
|
|
39
50
|
* @param UpdateRecoveryGroupCommandInput - {@link UpdateRecoveryGroupCommandInput}
|
|
@@ -57,6 +68,8 @@ export interface UpdateRecoveryGroupCommandOutput extends UpdateRecoveryGroupRes
|
|
|
57
68
|
* @throws {@link ValidationException} (client fault)
|
|
58
69
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
70
|
*
|
|
71
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
60
73
|
*
|
|
61
74
|
*/
|
|
62
75
|
export declare class UpdateRecoveryGroupCommand extends $Command<UpdateRecoveryGroupCommandInput, UpdateRecoveryGroupCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
|
@@ -56,6 +56,39 @@ export interface UpdateResourceSetCommandOutput extends UpdateResourceSetRespons
|
|
|
56
56
|
* };
|
|
57
57
|
* const command = new UpdateResourceSetCommand(input);
|
|
58
58
|
* const response = await client.send(command);
|
|
59
|
+
* // { // UpdateResourceSetResponse
|
|
60
|
+
* // ResourceSetArn: "STRING_VALUE",
|
|
61
|
+
* // ResourceSetName: "STRING_VALUE",
|
|
62
|
+
* // ResourceSetType: "STRING_VALUE",
|
|
63
|
+
* // Resources: [ // __listOfResource
|
|
64
|
+
* // { // Resource
|
|
65
|
+
* // ComponentId: "STRING_VALUE",
|
|
66
|
+
* // DnsTargetResource: { // DNSTargetResource
|
|
67
|
+
* // DomainName: "STRING_VALUE",
|
|
68
|
+
* // HostedZoneArn: "STRING_VALUE",
|
|
69
|
+
* // RecordSetId: "STRING_VALUE",
|
|
70
|
+
* // RecordType: "STRING_VALUE",
|
|
71
|
+
* // TargetResource: { // TargetResource
|
|
72
|
+
* // NLBResource: { // NLBResource
|
|
73
|
+
* // Arn: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // R53Resource: { // R53ResourceRecord
|
|
76
|
+
* // DomainName: "STRING_VALUE",
|
|
77
|
+
* // RecordSetId: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // ReadinessScopes: [ // __listOf__string
|
|
82
|
+
* // "STRING_VALUE",
|
|
83
|
+
* // ],
|
|
84
|
+
* // ResourceArn: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // Tags: { // Tags
|
|
88
|
+
* // "<keys>": "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
59
92
|
* ```
|
|
60
93
|
*
|
|
61
94
|
* @param UpdateResourceSetCommandInput - {@link UpdateResourceSetCommandInput}
|
|
@@ -79,6 +112,8 @@ export interface UpdateResourceSetCommandOutput extends UpdateResourceSetRespons
|
|
|
79
112
|
* @throws {@link ValidationException} (client fault)
|
|
80
113
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
81
114
|
*
|
|
115
|
+
* @throws {@link Route53RecoveryReadinessServiceException}
|
|
116
|
+
* <p>Base exception class for all service exceptions from Route53RecoveryReadiness service.</p>
|
|
82
117
|
*
|
|
83
118
|
*/
|
|
84
119
|
export declare class UpdateResourceSetCommand extends $Command<UpdateResourceSetCommandInput, UpdateResourceSetCommandOutput, Route53RecoveryReadinessClientResolvedConfig> {
|
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.327.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|