@aws-sdk/client-route53-recovery-readiness 3.379.1 → 3.385.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/models/models_0.d.ts +197 -0
- package/package.json +5 -5
|
@@ -6,22 +6,27 @@ import { Route53RecoveryReadinessServiceException as __BaseException } from "./R
|
|
|
6
6
|
*/
|
|
7
7
|
export interface CellOutput {
|
|
8
8
|
/**
|
|
9
|
+
* @public
|
|
9
10
|
* <p>The Amazon Resource Name (ARN) for the cell.</p>
|
|
10
11
|
*/
|
|
11
12
|
CellArn: string | undefined;
|
|
12
13
|
/**
|
|
14
|
+
* @public
|
|
13
15
|
* <p>The name of the cell.</p>
|
|
14
16
|
*/
|
|
15
17
|
CellName: string | undefined;
|
|
16
18
|
/**
|
|
19
|
+
* @public
|
|
17
20
|
* <p>A list of cell ARNs.</p>
|
|
18
21
|
*/
|
|
19
22
|
Cells: string[] | undefined;
|
|
20
23
|
/**
|
|
24
|
+
* @public
|
|
21
25
|
* <p>The readiness scope for the cell, which can be a cell Amazon Resource Name (ARN) or a recovery group ARN. This is a list but currently can have only one element.</p>
|
|
22
26
|
*/
|
|
23
27
|
ParentReadinessScopes: string[] | undefined;
|
|
24
28
|
/**
|
|
29
|
+
* @public
|
|
25
30
|
* <p>Tags on the resources.</p>
|
|
26
31
|
*/
|
|
27
32
|
Tags?: Record<string, string>;
|
|
@@ -32,14 +37,17 @@ export interface CellOutput {
|
|
|
32
37
|
*/
|
|
33
38
|
export interface ListRulesOutput {
|
|
34
39
|
/**
|
|
40
|
+
* @public
|
|
35
41
|
* <p>The resource type that the readiness rule applies to.</p>
|
|
36
42
|
*/
|
|
37
43
|
ResourceType: string | undefined;
|
|
38
44
|
/**
|
|
45
|
+
* @public
|
|
39
46
|
* <p>The description of a readiness rule.</p>
|
|
40
47
|
*/
|
|
41
48
|
RuleDescription: string | undefined;
|
|
42
49
|
/**
|
|
50
|
+
* @public
|
|
43
51
|
* <p>The ID for the readiness rule.</p>
|
|
44
52
|
*/
|
|
45
53
|
RuleId: string | undefined;
|
|
@@ -50,6 +58,7 @@ export interface ListRulesOutput {
|
|
|
50
58
|
*/
|
|
51
59
|
export interface Message {
|
|
52
60
|
/**
|
|
61
|
+
* @public
|
|
53
62
|
* <p>The text of a readiness check message.</p>
|
|
54
63
|
*/
|
|
55
64
|
MessageText?: string;
|
|
@@ -60,18 +69,22 @@ export interface Message {
|
|
|
60
69
|
*/
|
|
61
70
|
export interface ReadinessCheckOutput {
|
|
62
71
|
/**
|
|
72
|
+
* @public
|
|
63
73
|
* <p>The Amazon Resource Name (ARN) associated with a readiness check.</p>
|
|
64
74
|
*/
|
|
65
75
|
ReadinessCheckArn: string | undefined;
|
|
66
76
|
/**
|
|
77
|
+
* @public
|
|
67
78
|
* <p>Name of a readiness check.</p>
|
|
68
79
|
*/
|
|
69
80
|
ReadinessCheckName?: string;
|
|
70
81
|
/**
|
|
82
|
+
* @public
|
|
71
83
|
* <p>Name of the resource set to be checked.</p>
|
|
72
84
|
*/
|
|
73
85
|
ResourceSet: string | undefined;
|
|
74
86
|
/**
|
|
87
|
+
* @public
|
|
75
88
|
* <p>A collection of tags associated with a resource.</p>
|
|
76
89
|
*/
|
|
77
90
|
Tags?: Record<string, string>;
|
|
@@ -96,10 +109,12 @@ export type Readiness = (typeof Readiness)[keyof typeof Readiness];
|
|
|
96
109
|
*/
|
|
97
110
|
export interface ReadinessCheckSummary {
|
|
98
111
|
/**
|
|
112
|
+
* @public
|
|
99
113
|
* <p>The readiness status of this readiness check.</p>
|
|
100
114
|
*/
|
|
101
115
|
Readiness?: Readiness | string;
|
|
102
116
|
/**
|
|
117
|
+
* @public
|
|
103
118
|
* <p>The name of a readiness check.</p>
|
|
104
119
|
*/
|
|
105
120
|
ReadinessCheckName?: string;
|
|
@@ -110,6 +125,7 @@ export interface ReadinessCheckSummary {
|
|
|
110
125
|
*/
|
|
111
126
|
export interface Recommendation {
|
|
112
127
|
/**
|
|
128
|
+
* @public
|
|
113
129
|
* <p>Text of the recommendations that are provided to make an application more recovery resilient.</p>
|
|
114
130
|
*/
|
|
115
131
|
RecommendationText: string | undefined;
|
|
@@ -120,18 +136,22 @@ export interface Recommendation {
|
|
|
120
136
|
*/
|
|
121
137
|
export interface RecoveryGroupOutput {
|
|
122
138
|
/**
|
|
139
|
+
* @public
|
|
123
140
|
* <p>A list of a cell's Amazon Resource Names (ARNs).</p>
|
|
124
141
|
*/
|
|
125
142
|
Cells: string[] | undefined;
|
|
126
143
|
/**
|
|
144
|
+
* @public
|
|
127
145
|
* <p>The Amazon Resource Name (ARN) for the recovery group.</p>
|
|
128
146
|
*/
|
|
129
147
|
RecoveryGroupArn: string | undefined;
|
|
130
148
|
/**
|
|
149
|
+
* @public
|
|
131
150
|
* <p>The name of the recovery group.</p>
|
|
132
151
|
*/
|
|
133
152
|
RecoveryGroupName: string | undefined;
|
|
134
153
|
/**
|
|
154
|
+
* @public
|
|
135
155
|
* <p>The tags associated with the recovery group.</p>
|
|
136
156
|
*/
|
|
137
157
|
Tags?: Record<string, string>;
|
|
@@ -142,6 +162,7 @@ export interface RecoveryGroupOutput {
|
|
|
142
162
|
*/
|
|
143
163
|
export interface NLBResource {
|
|
144
164
|
/**
|
|
165
|
+
* @public
|
|
145
166
|
* <p>The Network Load Balancer resource Amazon Resource Name (ARN).</p>
|
|
146
167
|
*/
|
|
147
168
|
Arn?: string;
|
|
@@ -152,10 +173,12 @@ export interface NLBResource {
|
|
|
152
173
|
*/
|
|
153
174
|
export interface R53ResourceRecord {
|
|
154
175
|
/**
|
|
176
|
+
* @public
|
|
155
177
|
* <p>The DNS target domain name.</p>
|
|
156
178
|
*/
|
|
157
179
|
DomainName?: string;
|
|
158
180
|
/**
|
|
181
|
+
* @public
|
|
159
182
|
* <p>The Route 53 Resource Record Set ID.</p>
|
|
160
183
|
*/
|
|
161
184
|
RecordSetId?: string;
|
|
@@ -166,10 +189,12 @@ export interface R53ResourceRecord {
|
|
|
166
189
|
*/
|
|
167
190
|
export interface TargetResource {
|
|
168
191
|
/**
|
|
192
|
+
* @public
|
|
169
193
|
* <p>The Network Load Balancer Resource.</p>
|
|
170
194
|
*/
|
|
171
195
|
NLBResource?: NLBResource;
|
|
172
196
|
/**
|
|
197
|
+
* @public
|
|
173
198
|
* <p>The Route 53 resource.</p>
|
|
174
199
|
*/
|
|
175
200
|
R53Resource?: R53ResourceRecord;
|
|
@@ -180,22 +205,27 @@ export interface TargetResource {
|
|
|
180
205
|
*/
|
|
181
206
|
export interface DNSTargetResource {
|
|
182
207
|
/**
|
|
208
|
+
* @public
|
|
183
209
|
* <p>The domain name that acts as an ingress point to a portion of the customer application.</p>
|
|
184
210
|
*/
|
|
185
211
|
DomainName?: string;
|
|
186
212
|
/**
|
|
213
|
+
* @public
|
|
187
214
|
* <p>The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the target resource.</p>
|
|
188
215
|
*/
|
|
189
216
|
HostedZoneArn?: string;
|
|
190
217
|
/**
|
|
218
|
+
* @public
|
|
191
219
|
* <p>The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type.</p>
|
|
192
220
|
*/
|
|
193
221
|
RecordSetId?: string;
|
|
194
222
|
/**
|
|
223
|
+
* @public
|
|
195
224
|
* <p>The type of DNS record of the target resource.</p>
|
|
196
225
|
*/
|
|
197
226
|
RecordType?: string;
|
|
198
227
|
/**
|
|
228
|
+
* @public
|
|
199
229
|
* <p>The target resource of the DNS target resource.</p>
|
|
200
230
|
*/
|
|
201
231
|
TargetResource?: TargetResource;
|
|
@@ -206,18 +236,22 @@ export interface DNSTargetResource {
|
|
|
206
236
|
*/
|
|
207
237
|
export interface Resource {
|
|
208
238
|
/**
|
|
239
|
+
* @public
|
|
209
240
|
* <p>The component identifier of the resource, generated when DNS target resource is used.</p>
|
|
210
241
|
*/
|
|
211
242
|
ComponentId?: string;
|
|
212
243
|
/**
|
|
244
|
+
* @public
|
|
213
245
|
* <p>The DNS target resource.</p>
|
|
214
246
|
*/
|
|
215
247
|
DnsTargetResource?: DNSTargetResource;
|
|
216
248
|
/**
|
|
249
|
+
* @public
|
|
217
250
|
* <p>A list of recovery group Amazon Resource Names (ARNs) and cell ARNs that this resource is contained within.</p>
|
|
218
251
|
*/
|
|
219
252
|
ReadinessScopes?: string[];
|
|
220
253
|
/**
|
|
254
|
+
* @public
|
|
221
255
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services resource.</p>
|
|
222
256
|
*/
|
|
223
257
|
ResourceArn?: string;
|
|
@@ -228,18 +262,22 @@ export interface Resource {
|
|
|
228
262
|
*/
|
|
229
263
|
export interface ResourceResult {
|
|
230
264
|
/**
|
|
265
|
+
* @public
|
|
231
266
|
* <p>The component id of the resource.</p>
|
|
232
267
|
*/
|
|
233
268
|
ComponentId?: string;
|
|
234
269
|
/**
|
|
270
|
+
* @public
|
|
235
271
|
* <p>The time (UTC) that the resource was last checked for readiness, in ISO-8601 format.</p>
|
|
236
272
|
*/
|
|
237
273
|
LastCheckedTimestamp: Date | undefined;
|
|
238
274
|
/**
|
|
275
|
+
* @public
|
|
239
276
|
* <p>The readiness of a resource.</p>
|
|
240
277
|
*/
|
|
241
278
|
Readiness: Readiness | string | undefined;
|
|
242
279
|
/**
|
|
280
|
+
* @public
|
|
243
281
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
244
282
|
*/
|
|
245
283
|
ResourceArn?: string;
|
|
@@ -250,22 +288,27 @@ export interface ResourceResult {
|
|
|
250
288
|
*/
|
|
251
289
|
export interface ResourceSetOutput {
|
|
252
290
|
/**
|
|
291
|
+
* @public
|
|
253
292
|
* <p>The Amazon Resource Name (ARN) for the resource set.</p>
|
|
254
293
|
*/
|
|
255
294
|
ResourceSetArn: string | undefined;
|
|
256
295
|
/**
|
|
296
|
+
* @public
|
|
257
297
|
* <p>The name of the resource set.</p>
|
|
258
298
|
*/
|
|
259
299
|
ResourceSetName: string | undefined;
|
|
260
300
|
/**
|
|
301
|
+
* @public
|
|
261
302
|
* <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
|
|
262
303
|
*/
|
|
263
304
|
ResourceSetType: string | undefined;
|
|
264
305
|
/**
|
|
306
|
+
* @public
|
|
265
307
|
* <p>A list of resource objects.</p>
|
|
266
308
|
*/
|
|
267
309
|
Resources: Resource[] | undefined;
|
|
268
310
|
/**
|
|
311
|
+
* @public
|
|
269
312
|
* <p>A collection of tags associated with a resource.</p>
|
|
270
313
|
*/
|
|
271
314
|
Tags?: Record<string, string>;
|
|
@@ -276,18 +319,22 @@ export interface ResourceSetOutput {
|
|
|
276
319
|
*/
|
|
277
320
|
export interface RuleResult {
|
|
278
321
|
/**
|
|
322
|
+
* @public
|
|
279
323
|
* <p>The time the resource was last checked for readiness, in ISO-8601 format, UTC.</p>
|
|
280
324
|
*/
|
|
281
325
|
LastCheckedTimestamp: Date | undefined;
|
|
282
326
|
/**
|
|
327
|
+
* @public
|
|
283
328
|
* <p>Details about the resource's readiness.</p>
|
|
284
329
|
*/
|
|
285
330
|
Messages: Message[] | undefined;
|
|
286
331
|
/**
|
|
332
|
+
* @public
|
|
287
333
|
* <p>The readiness at rule level.</p>
|
|
288
334
|
*/
|
|
289
335
|
Readiness: Readiness | string | undefined;
|
|
290
336
|
/**
|
|
337
|
+
* @public
|
|
291
338
|
* <p>The identifier of the rule.</p>
|
|
292
339
|
*/
|
|
293
340
|
RuleId: string | undefined;
|
|
@@ -323,14 +370,17 @@ export declare class ConflictException extends __BaseException {
|
|
|
323
370
|
*/
|
|
324
371
|
export interface CreateCellRequest {
|
|
325
372
|
/**
|
|
373
|
+
* @public
|
|
326
374
|
* <p>The name of the cell to create.</p>
|
|
327
375
|
*/
|
|
328
376
|
CellName: string | undefined;
|
|
329
377
|
/**
|
|
378
|
+
* @public
|
|
330
379
|
* <p>A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells. For example, Availability Zones within specific Amazon Web Services Regions.</p>
|
|
331
380
|
*/
|
|
332
381
|
Cells?: string[];
|
|
333
382
|
/**
|
|
383
|
+
* @public
|
|
334
384
|
* <p>A collection of tags associated with a resource.</p>
|
|
335
385
|
*/
|
|
336
386
|
Tags?: Record<string, string>;
|
|
@@ -340,22 +390,27 @@ export interface CreateCellRequest {
|
|
|
340
390
|
*/
|
|
341
391
|
export interface CreateCellResponse {
|
|
342
392
|
/**
|
|
393
|
+
* @public
|
|
343
394
|
* <p>The Amazon Resource Name (ARN) for the cell.</p>
|
|
344
395
|
*/
|
|
345
396
|
CellArn?: string;
|
|
346
397
|
/**
|
|
398
|
+
* @public
|
|
347
399
|
* <p>The name of the cell.</p>
|
|
348
400
|
*/
|
|
349
401
|
CellName?: string;
|
|
350
402
|
/**
|
|
403
|
+
* @public
|
|
351
404
|
* <p>A list of cell ARNs.</p>
|
|
352
405
|
*/
|
|
353
406
|
Cells?: string[];
|
|
354
407
|
/**
|
|
408
|
+
* @public
|
|
355
409
|
* <p>The readiness scope for the cell, which can be a cell Amazon Resource Name (ARN) or a recovery group ARN. This is a list but currently can have only one element.</p>
|
|
356
410
|
*/
|
|
357
411
|
ParentReadinessScopes?: string[];
|
|
358
412
|
/**
|
|
413
|
+
* @public
|
|
359
414
|
* <p>Tags on the resources.</p>
|
|
360
415
|
*/
|
|
361
416
|
Tags?: Record<string, string>;
|
|
@@ -404,6 +459,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
404
459
|
*/
|
|
405
460
|
export interface CreateCrossAccountAuthorizationRequest {
|
|
406
461
|
/**
|
|
462
|
+
* @public
|
|
407
463
|
* <p>The cross-account authorization.</p>
|
|
408
464
|
*/
|
|
409
465
|
CrossAccountAuthorization: string | undefined;
|
|
@@ -413,6 +469,7 @@ export interface CreateCrossAccountAuthorizationRequest {
|
|
|
413
469
|
*/
|
|
414
470
|
export interface CreateCrossAccountAuthorizationResponse {
|
|
415
471
|
/**
|
|
472
|
+
* @public
|
|
416
473
|
* <p>The cross-account authorization.</p>
|
|
417
474
|
*/
|
|
418
475
|
CrossAccountAuthorization?: string;
|
|
@@ -422,14 +479,17 @@ export interface CreateCrossAccountAuthorizationResponse {
|
|
|
422
479
|
*/
|
|
423
480
|
export interface CreateReadinessCheckRequest {
|
|
424
481
|
/**
|
|
482
|
+
* @public
|
|
425
483
|
* <p>The name of the readiness check to create.</p>
|
|
426
484
|
*/
|
|
427
485
|
ReadinessCheckName: string | undefined;
|
|
428
486
|
/**
|
|
487
|
+
* @public
|
|
429
488
|
* <p>The name of the resource set to check.</p>
|
|
430
489
|
*/
|
|
431
490
|
ResourceSetName: string | undefined;
|
|
432
491
|
/**
|
|
492
|
+
* @public
|
|
433
493
|
* <p>A collection of tags associated with a resource.</p>
|
|
434
494
|
*/
|
|
435
495
|
Tags?: Record<string, string>;
|
|
@@ -439,18 +499,22 @@ export interface CreateReadinessCheckRequest {
|
|
|
439
499
|
*/
|
|
440
500
|
export interface CreateReadinessCheckResponse {
|
|
441
501
|
/**
|
|
502
|
+
* @public
|
|
442
503
|
* <p>The Amazon Resource Name (ARN) associated with a readiness check.</p>
|
|
443
504
|
*/
|
|
444
505
|
ReadinessCheckArn?: string;
|
|
445
506
|
/**
|
|
507
|
+
* @public
|
|
446
508
|
* <p>Name of a readiness check.</p>
|
|
447
509
|
*/
|
|
448
510
|
ReadinessCheckName?: string;
|
|
449
511
|
/**
|
|
512
|
+
* @public
|
|
450
513
|
* <p>Name of the resource set to be checked.</p>
|
|
451
514
|
*/
|
|
452
515
|
ResourceSet?: string;
|
|
453
516
|
/**
|
|
517
|
+
* @public
|
|
454
518
|
* <p>A collection of tags associated with a resource.</p>
|
|
455
519
|
*/
|
|
456
520
|
Tags?: Record<string, string>;
|
|
@@ -460,14 +524,17 @@ export interface CreateReadinessCheckResponse {
|
|
|
460
524
|
*/
|
|
461
525
|
export interface CreateRecoveryGroupRequest {
|
|
462
526
|
/**
|
|
527
|
+
* @public
|
|
463
528
|
* <p>A list of the cell Amazon Resource Names (ARNs) in the recovery group.</p>
|
|
464
529
|
*/
|
|
465
530
|
Cells?: string[];
|
|
466
531
|
/**
|
|
532
|
+
* @public
|
|
467
533
|
* <p>The name of the recovery group to create.</p>
|
|
468
534
|
*/
|
|
469
535
|
RecoveryGroupName: string | undefined;
|
|
470
536
|
/**
|
|
537
|
+
* @public
|
|
471
538
|
* <p>A collection of tags associated with a resource.</p>
|
|
472
539
|
*/
|
|
473
540
|
Tags?: Record<string, string>;
|
|
@@ -477,18 +544,22 @@ export interface CreateRecoveryGroupRequest {
|
|
|
477
544
|
*/
|
|
478
545
|
export interface CreateRecoveryGroupResponse {
|
|
479
546
|
/**
|
|
547
|
+
* @public
|
|
480
548
|
* <p>A list of a cell's Amazon Resource Names (ARNs).</p>
|
|
481
549
|
*/
|
|
482
550
|
Cells?: string[];
|
|
483
551
|
/**
|
|
552
|
+
* @public
|
|
484
553
|
* <p>The Amazon Resource Name (ARN) for the recovery group.</p>
|
|
485
554
|
*/
|
|
486
555
|
RecoveryGroupArn?: string;
|
|
487
556
|
/**
|
|
557
|
+
* @public
|
|
488
558
|
* <p>The name of the recovery group.</p>
|
|
489
559
|
*/
|
|
490
560
|
RecoveryGroupName?: string;
|
|
491
561
|
/**
|
|
562
|
+
* @public
|
|
492
563
|
* <p>The tags associated with the recovery group.</p>
|
|
493
564
|
*/
|
|
494
565
|
Tags?: Record<string, string>;
|
|
@@ -498,18 +569,22 @@ export interface CreateRecoveryGroupResponse {
|
|
|
498
569
|
*/
|
|
499
570
|
export interface CreateResourceSetRequest {
|
|
500
571
|
/**
|
|
572
|
+
* @public
|
|
501
573
|
* <p>The name of the resource set to create.</p>
|
|
502
574
|
*/
|
|
503
575
|
ResourceSetName: string | undefined;
|
|
504
576
|
/**
|
|
577
|
+
* @public
|
|
505
578
|
* <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
|
|
506
579
|
*/
|
|
507
580
|
ResourceSetType: string | undefined;
|
|
508
581
|
/**
|
|
582
|
+
* @public
|
|
509
583
|
* <p>A list of resource objects in the resource set.</p>
|
|
510
584
|
*/
|
|
511
585
|
Resources: Resource[] | undefined;
|
|
512
586
|
/**
|
|
587
|
+
* @public
|
|
513
588
|
* <p>A tag to associate with the parameters for a resource set.</p>
|
|
514
589
|
*/
|
|
515
590
|
Tags?: Record<string, string>;
|
|
@@ -519,22 +594,27 @@ export interface CreateResourceSetRequest {
|
|
|
519
594
|
*/
|
|
520
595
|
export interface CreateResourceSetResponse {
|
|
521
596
|
/**
|
|
597
|
+
* @public
|
|
522
598
|
* <p>The Amazon Resource Name (ARN) for the resource set.</p>
|
|
523
599
|
*/
|
|
524
600
|
ResourceSetArn?: string;
|
|
525
601
|
/**
|
|
602
|
+
* @public
|
|
526
603
|
* <p>The name of the resource set.</p>
|
|
527
604
|
*/
|
|
528
605
|
ResourceSetName?: string;
|
|
529
606
|
/**
|
|
607
|
+
* @public
|
|
530
608
|
* <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
|
|
531
609
|
*/
|
|
532
610
|
ResourceSetType?: string;
|
|
533
611
|
/**
|
|
612
|
+
* @public
|
|
534
613
|
* <p>A list of resource objects.</p>
|
|
535
614
|
*/
|
|
536
615
|
Resources?: Resource[];
|
|
537
616
|
/**
|
|
617
|
+
* @public
|
|
538
618
|
* <p>A collection of tags associated with a resource.</p>
|
|
539
619
|
*/
|
|
540
620
|
Tags?: Record<string, string>;
|
|
@@ -544,6 +624,7 @@ export interface CreateResourceSetResponse {
|
|
|
544
624
|
*/
|
|
545
625
|
export interface DeleteCellRequest {
|
|
546
626
|
/**
|
|
627
|
+
* @public
|
|
547
628
|
* <p>The name of the cell.</p>
|
|
548
629
|
*/
|
|
549
630
|
CellName: string | undefined;
|
|
@@ -566,6 +647,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
566
647
|
*/
|
|
567
648
|
export interface DeleteCrossAccountAuthorizationRequest {
|
|
568
649
|
/**
|
|
650
|
+
* @public
|
|
569
651
|
* <p>The cross-account authorization.</p>
|
|
570
652
|
*/
|
|
571
653
|
CrossAccountAuthorization: string | undefined;
|
|
@@ -580,6 +662,7 @@ export interface DeleteCrossAccountAuthorizationResponse {
|
|
|
580
662
|
*/
|
|
581
663
|
export interface DeleteReadinessCheckRequest {
|
|
582
664
|
/**
|
|
665
|
+
* @public
|
|
583
666
|
* <p>Name of a readiness check.</p>
|
|
584
667
|
*/
|
|
585
668
|
ReadinessCheckName: string | undefined;
|
|
@@ -589,6 +672,7 @@ export interface DeleteReadinessCheckRequest {
|
|
|
589
672
|
*/
|
|
590
673
|
export interface DeleteRecoveryGroupRequest {
|
|
591
674
|
/**
|
|
675
|
+
* @public
|
|
592
676
|
* <p>The name of a recovery group.</p>
|
|
593
677
|
*/
|
|
594
678
|
RecoveryGroupName: string | undefined;
|
|
@@ -598,6 +682,7 @@ export interface DeleteRecoveryGroupRequest {
|
|
|
598
682
|
*/
|
|
599
683
|
export interface DeleteResourceSetRequest {
|
|
600
684
|
/**
|
|
685
|
+
* @public
|
|
601
686
|
* <p>Name of a resource set.</p>
|
|
602
687
|
*/
|
|
603
688
|
ResourceSetName: string | undefined;
|
|
@@ -607,14 +692,17 @@ export interface DeleteResourceSetRequest {
|
|
|
607
692
|
*/
|
|
608
693
|
export interface GetArchitectureRecommendationsRequest {
|
|
609
694
|
/**
|
|
695
|
+
* @public
|
|
610
696
|
* <p>The number of objects that you want to return with this call.</p>
|
|
611
697
|
*/
|
|
612
698
|
MaxResults?: number;
|
|
613
699
|
/**
|
|
700
|
+
* @public
|
|
614
701
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
615
702
|
*/
|
|
616
703
|
NextToken?: string;
|
|
617
704
|
/**
|
|
705
|
+
* @public
|
|
618
706
|
* <p>The name of a recovery group.</p>
|
|
619
707
|
*/
|
|
620
708
|
RecoveryGroupName: string | undefined;
|
|
@@ -624,14 +712,17 @@ export interface GetArchitectureRecommendationsRequest {
|
|
|
624
712
|
*/
|
|
625
713
|
export interface GetArchitectureRecommendationsResponse {
|
|
626
714
|
/**
|
|
715
|
+
* @public
|
|
627
716
|
* <p>The time that a recovery group was last assessed for recommendations, in UTC ISO-8601 format.</p>
|
|
628
717
|
*/
|
|
629
718
|
LastAuditTimestamp?: Date;
|
|
630
719
|
/**
|
|
720
|
+
* @public
|
|
631
721
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
632
722
|
*/
|
|
633
723
|
NextToken?: string;
|
|
634
724
|
/**
|
|
725
|
+
* @public
|
|
635
726
|
* <p>A list of the recommendations for the customer's application.</p>
|
|
636
727
|
*/
|
|
637
728
|
Recommendations?: Recommendation[];
|
|
@@ -641,6 +732,7 @@ export interface GetArchitectureRecommendationsResponse {
|
|
|
641
732
|
*/
|
|
642
733
|
export interface GetCellRequest {
|
|
643
734
|
/**
|
|
735
|
+
* @public
|
|
644
736
|
* <p>The name of the cell.</p>
|
|
645
737
|
*/
|
|
646
738
|
CellName: string | undefined;
|
|
@@ -650,22 +742,27 @@ export interface GetCellRequest {
|
|
|
650
742
|
*/
|
|
651
743
|
export interface GetCellResponse {
|
|
652
744
|
/**
|
|
745
|
+
* @public
|
|
653
746
|
* <p>The Amazon Resource Name (ARN) for the cell.</p>
|
|
654
747
|
*/
|
|
655
748
|
CellArn?: string;
|
|
656
749
|
/**
|
|
750
|
+
* @public
|
|
657
751
|
* <p>The name of the cell.</p>
|
|
658
752
|
*/
|
|
659
753
|
CellName?: string;
|
|
660
754
|
/**
|
|
755
|
+
* @public
|
|
661
756
|
* <p>A list of cell ARNs.</p>
|
|
662
757
|
*/
|
|
663
758
|
Cells?: string[];
|
|
664
759
|
/**
|
|
760
|
+
* @public
|
|
665
761
|
* <p>The readiness scope for the cell, which can be a cell Amazon Resource Name (ARN) or a recovery group ARN. This is a list but currently can have only one element.</p>
|
|
666
762
|
*/
|
|
667
763
|
ParentReadinessScopes?: string[];
|
|
668
764
|
/**
|
|
765
|
+
* @public
|
|
669
766
|
* <p>Tags on the resources.</p>
|
|
670
767
|
*/
|
|
671
768
|
Tags?: Record<string, string>;
|
|
@@ -675,14 +772,17 @@ export interface GetCellResponse {
|
|
|
675
772
|
*/
|
|
676
773
|
export interface GetCellReadinessSummaryRequest {
|
|
677
774
|
/**
|
|
775
|
+
* @public
|
|
678
776
|
* <p>The name of the cell.</p>
|
|
679
777
|
*/
|
|
680
778
|
CellName: string | undefined;
|
|
681
779
|
/**
|
|
780
|
+
* @public
|
|
682
781
|
* <p>The number of objects that you want to return with this call.</p>
|
|
683
782
|
*/
|
|
684
783
|
MaxResults?: number;
|
|
685
784
|
/**
|
|
785
|
+
* @public
|
|
686
786
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
687
787
|
*/
|
|
688
788
|
NextToken?: string;
|
|
@@ -692,14 +792,17 @@ export interface GetCellReadinessSummaryRequest {
|
|
|
692
792
|
*/
|
|
693
793
|
export interface GetCellReadinessSummaryResponse {
|
|
694
794
|
/**
|
|
795
|
+
* @public
|
|
695
796
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
696
797
|
*/
|
|
697
798
|
NextToken?: string;
|
|
698
799
|
/**
|
|
800
|
+
* @public
|
|
699
801
|
* <p>The readiness at a cell level.</p>
|
|
700
802
|
*/
|
|
701
803
|
Readiness?: Readiness | string;
|
|
702
804
|
/**
|
|
805
|
+
* @public
|
|
703
806
|
* <p>Summaries for the readiness checks that make up the cell.</p>
|
|
704
807
|
*/
|
|
705
808
|
ReadinessChecks?: ReadinessCheckSummary[];
|
|
@@ -709,6 +812,7 @@ export interface GetCellReadinessSummaryResponse {
|
|
|
709
812
|
*/
|
|
710
813
|
export interface GetReadinessCheckRequest {
|
|
711
814
|
/**
|
|
815
|
+
* @public
|
|
712
816
|
* <p>Name of a readiness check.</p>
|
|
713
817
|
*/
|
|
714
818
|
ReadinessCheckName: string | undefined;
|
|
@@ -718,18 +822,22 @@ export interface GetReadinessCheckRequest {
|
|
|
718
822
|
*/
|
|
719
823
|
export interface GetReadinessCheckResponse {
|
|
720
824
|
/**
|
|
825
|
+
* @public
|
|
721
826
|
* <p>The Amazon Resource Name (ARN) associated with a readiness check.</p>
|
|
722
827
|
*/
|
|
723
828
|
ReadinessCheckArn?: string;
|
|
724
829
|
/**
|
|
830
|
+
* @public
|
|
725
831
|
* <p>Name of a readiness check.</p>
|
|
726
832
|
*/
|
|
727
833
|
ReadinessCheckName?: string;
|
|
728
834
|
/**
|
|
835
|
+
* @public
|
|
729
836
|
* <p>Name of the resource set to be checked.</p>
|
|
730
837
|
*/
|
|
731
838
|
ResourceSet?: string;
|
|
732
839
|
/**
|
|
840
|
+
* @public
|
|
733
841
|
* <p>A collection of tags associated with a resource.</p>
|
|
734
842
|
*/
|
|
735
843
|
Tags?: Record<string, string>;
|
|
@@ -739,18 +847,22 @@ export interface GetReadinessCheckResponse {
|
|
|
739
847
|
*/
|
|
740
848
|
export interface GetReadinessCheckResourceStatusRequest {
|
|
741
849
|
/**
|
|
850
|
+
* @public
|
|
742
851
|
* <p>The number of objects that you want to return with this call.</p>
|
|
743
852
|
*/
|
|
744
853
|
MaxResults?: number;
|
|
745
854
|
/**
|
|
855
|
+
* @public
|
|
746
856
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
747
857
|
*/
|
|
748
858
|
NextToken?: string;
|
|
749
859
|
/**
|
|
860
|
+
* @public
|
|
750
861
|
* <p>Name of a readiness check.</p>
|
|
751
862
|
*/
|
|
752
863
|
ReadinessCheckName: string | undefined;
|
|
753
864
|
/**
|
|
865
|
+
* @public
|
|
754
866
|
* <p>The resource identifier, which is the Amazon Resource Name (ARN) or the identifier generated for the resource by Application Recovery Controller (for example, for a DNS target resource).</p>
|
|
755
867
|
*/
|
|
756
868
|
ResourceIdentifier: string | undefined;
|
|
@@ -760,14 +872,17 @@ export interface GetReadinessCheckResourceStatusRequest {
|
|
|
760
872
|
*/
|
|
761
873
|
export interface GetReadinessCheckResourceStatusResponse {
|
|
762
874
|
/**
|
|
875
|
+
* @public
|
|
763
876
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
764
877
|
*/
|
|
765
878
|
NextToken?: string;
|
|
766
879
|
/**
|
|
880
|
+
* @public
|
|
767
881
|
* <p>The readiness at a rule level.</p>
|
|
768
882
|
*/
|
|
769
883
|
Readiness?: Readiness | string;
|
|
770
884
|
/**
|
|
885
|
+
* @public
|
|
771
886
|
* <p>Details of the rule's results.</p>
|
|
772
887
|
*/
|
|
773
888
|
Rules?: RuleResult[];
|
|
@@ -777,14 +892,17 @@ export interface GetReadinessCheckResourceStatusResponse {
|
|
|
777
892
|
*/
|
|
778
893
|
export interface GetReadinessCheckStatusRequest {
|
|
779
894
|
/**
|
|
895
|
+
* @public
|
|
780
896
|
* <p>The number of objects that you want to return with this call.</p>
|
|
781
897
|
*/
|
|
782
898
|
MaxResults?: number;
|
|
783
899
|
/**
|
|
900
|
+
* @public
|
|
784
901
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
785
902
|
*/
|
|
786
903
|
NextToken?: string;
|
|
787
904
|
/**
|
|
905
|
+
* @public
|
|
788
906
|
* <p>Name of a readiness check.</p>
|
|
789
907
|
*/
|
|
790
908
|
ReadinessCheckName: string | undefined;
|
|
@@ -794,18 +912,22 @@ export interface GetReadinessCheckStatusRequest {
|
|
|
794
912
|
*/
|
|
795
913
|
export interface GetReadinessCheckStatusResponse {
|
|
796
914
|
/**
|
|
915
|
+
* @public
|
|
797
916
|
* <p>Top level messages for readiness check status</p>
|
|
798
917
|
*/
|
|
799
918
|
Messages?: Message[];
|
|
800
919
|
/**
|
|
920
|
+
* @public
|
|
801
921
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
802
922
|
*/
|
|
803
923
|
NextToken?: string;
|
|
804
924
|
/**
|
|
925
|
+
* @public
|
|
805
926
|
* <p>The readiness at rule level.</p>
|
|
806
927
|
*/
|
|
807
928
|
Readiness?: Readiness | string;
|
|
808
929
|
/**
|
|
930
|
+
* @public
|
|
809
931
|
* <p>Summary of the readiness of resources.</p>
|
|
810
932
|
*/
|
|
811
933
|
Resources?: ResourceResult[];
|
|
@@ -815,6 +937,7 @@ export interface GetReadinessCheckStatusResponse {
|
|
|
815
937
|
*/
|
|
816
938
|
export interface GetRecoveryGroupRequest {
|
|
817
939
|
/**
|
|
940
|
+
* @public
|
|
818
941
|
* <p>The name of a recovery group.</p>
|
|
819
942
|
*/
|
|
820
943
|
RecoveryGroupName: string | undefined;
|
|
@@ -824,18 +947,22 @@ export interface GetRecoveryGroupRequest {
|
|
|
824
947
|
*/
|
|
825
948
|
export interface GetRecoveryGroupResponse {
|
|
826
949
|
/**
|
|
950
|
+
* @public
|
|
827
951
|
* <p>A list of a cell's Amazon Resource Names (ARNs).</p>
|
|
828
952
|
*/
|
|
829
953
|
Cells?: string[];
|
|
830
954
|
/**
|
|
955
|
+
* @public
|
|
831
956
|
* <p>The Amazon Resource Name (ARN) for the recovery group.</p>
|
|
832
957
|
*/
|
|
833
958
|
RecoveryGroupArn?: string;
|
|
834
959
|
/**
|
|
960
|
+
* @public
|
|
835
961
|
* <p>The name of the recovery group.</p>
|
|
836
962
|
*/
|
|
837
963
|
RecoveryGroupName?: string;
|
|
838
964
|
/**
|
|
965
|
+
* @public
|
|
839
966
|
* <p>The tags associated with the recovery group.</p>
|
|
840
967
|
*/
|
|
841
968
|
Tags?: Record<string, string>;
|
|
@@ -845,14 +972,17 @@ export interface GetRecoveryGroupResponse {
|
|
|
845
972
|
*/
|
|
846
973
|
export interface GetRecoveryGroupReadinessSummaryRequest {
|
|
847
974
|
/**
|
|
975
|
+
* @public
|
|
848
976
|
* <p>The number of objects that you want to return with this call.</p>
|
|
849
977
|
*/
|
|
850
978
|
MaxResults?: number;
|
|
851
979
|
/**
|
|
980
|
+
* @public
|
|
852
981
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
853
982
|
*/
|
|
854
983
|
NextToken?: string;
|
|
855
984
|
/**
|
|
985
|
+
* @public
|
|
856
986
|
* <p>The name of a recovery group.</p>
|
|
857
987
|
*/
|
|
858
988
|
RecoveryGroupName: string | undefined;
|
|
@@ -862,14 +992,17 @@ export interface GetRecoveryGroupReadinessSummaryRequest {
|
|
|
862
992
|
*/
|
|
863
993
|
export interface GetRecoveryGroupReadinessSummaryResponse {
|
|
864
994
|
/**
|
|
995
|
+
* @public
|
|
865
996
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
866
997
|
*/
|
|
867
998
|
NextToken?: string;
|
|
868
999
|
/**
|
|
1000
|
+
* @public
|
|
869
1001
|
* <p>The readiness status at a recovery group level.</p>
|
|
870
1002
|
*/
|
|
871
1003
|
Readiness?: Readiness | string;
|
|
872
1004
|
/**
|
|
1005
|
+
* @public
|
|
873
1006
|
* <p>Summaries of the readiness checks for the recovery group.</p>
|
|
874
1007
|
*/
|
|
875
1008
|
ReadinessChecks?: ReadinessCheckSummary[];
|
|
@@ -879,6 +1012,7 @@ export interface GetRecoveryGroupReadinessSummaryResponse {
|
|
|
879
1012
|
*/
|
|
880
1013
|
export interface GetResourceSetRequest {
|
|
881
1014
|
/**
|
|
1015
|
+
* @public
|
|
882
1016
|
* <p>Name of a resource set.</p>
|
|
883
1017
|
*/
|
|
884
1018
|
ResourceSetName: string | undefined;
|
|
@@ -888,22 +1022,27 @@ export interface GetResourceSetRequest {
|
|
|
888
1022
|
*/
|
|
889
1023
|
export interface GetResourceSetResponse {
|
|
890
1024
|
/**
|
|
1025
|
+
* @public
|
|
891
1026
|
* <p>The Amazon Resource Name (ARN) for the resource set.</p>
|
|
892
1027
|
*/
|
|
893
1028
|
ResourceSetArn?: string;
|
|
894
1029
|
/**
|
|
1030
|
+
* @public
|
|
895
1031
|
* <p>The name of the resource set.</p>
|
|
896
1032
|
*/
|
|
897
1033
|
ResourceSetName?: string;
|
|
898
1034
|
/**
|
|
1035
|
+
* @public
|
|
899
1036
|
* <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
|
|
900
1037
|
*/
|
|
901
1038
|
ResourceSetType?: string;
|
|
902
1039
|
/**
|
|
1040
|
+
* @public
|
|
903
1041
|
* <p>A list of resource objects.</p>
|
|
904
1042
|
*/
|
|
905
1043
|
Resources?: Resource[];
|
|
906
1044
|
/**
|
|
1045
|
+
* @public
|
|
907
1046
|
* <p>A collection of tags associated with a resource.</p>
|
|
908
1047
|
*/
|
|
909
1048
|
Tags?: Record<string, string>;
|
|
@@ -913,10 +1052,12 @@ export interface GetResourceSetResponse {
|
|
|
913
1052
|
*/
|
|
914
1053
|
export interface ListCellsRequest {
|
|
915
1054
|
/**
|
|
1055
|
+
* @public
|
|
916
1056
|
* <p>The number of objects that you want to return with this call.</p>
|
|
917
1057
|
*/
|
|
918
1058
|
MaxResults?: number;
|
|
919
1059
|
/**
|
|
1060
|
+
* @public
|
|
920
1061
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
921
1062
|
*/
|
|
922
1063
|
NextToken?: string;
|
|
@@ -926,10 +1067,12 @@ export interface ListCellsRequest {
|
|
|
926
1067
|
*/
|
|
927
1068
|
export interface ListCellsResponse {
|
|
928
1069
|
/**
|
|
1070
|
+
* @public
|
|
929
1071
|
* <p>A list of cells.</p>
|
|
930
1072
|
*/
|
|
931
1073
|
Cells?: CellOutput[];
|
|
932
1074
|
/**
|
|
1075
|
+
* @public
|
|
933
1076
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
934
1077
|
*/
|
|
935
1078
|
NextToken?: string;
|
|
@@ -939,10 +1082,12 @@ export interface ListCellsResponse {
|
|
|
939
1082
|
*/
|
|
940
1083
|
export interface ListCrossAccountAuthorizationsRequest {
|
|
941
1084
|
/**
|
|
1085
|
+
* @public
|
|
942
1086
|
* <p>The number of objects that you want to return with this call.</p>
|
|
943
1087
|
*/
|
|
944
1088
|
MaxResults?: number;
|
|
945
1089
|
/**
|
|
1090
|
+
* @public
|
|
946
1091
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
947
1092
|
*/
|
|
948
1093
|
NextToken?: string;
|
|
@@ -952,10 +1097,12 @@ export interface ListCrossAccountAuthorizationsRequest {
|
|
|
952
1097
|
*/
|
|
953
1098
|
export interface ListCrossAccountAuthorizationsResponse {
|
|
954
1099
|
/**
|
|
1100
|
+
* @public
|
|
955
1101
|
* <p>A list of cross-account authorizations.</p>
|
|
956
1102
|
*/
|
|
957
1103
|
CrossAccountAuthorizations?: string[];
|
|
958
1104
|
/**
|
|
1105
|
+
* @public
|
|
959
1106
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
960
1107
|
*/
|
|
961
1108
|
NextToken?: string;
|
|
@@ -965,10 +1112,12 @@ export interface ListCrossAccountAuthorizationsResponse {
|
|
|
965
1112
|
*/
|
|
966
1113
|
export interface ListReadinessChecksRequest {
|
|
967
1114
|
/**
|
|
1115
|
+
* @public
|
|
968
1116
|
* <p>The number of objects that you want to return with this call.</p>
|
|
969
1117
|
*/
|
|
970
1118
|
MaxResults?: number;
|
|
971
1119
|
/**
|
|
1120
|
+
* @public
|
|
972
1121
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
973
1122
|
*/
|
|
974
1123
|
NextToken?: string;
|
|
@@ -978,10 +1127,12 @@ export interface ListReadinessChecksRequest {
|
|
|
978
1127
|
*/
|
|
979
1128
|
export interface ListReadinessChecksResponse {
|
|
980
1129
|
/**
|
|
1130
|
+
* @public
|
|
981
1131
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
982
1132
|
*/
|
|
983
1133
|
NextToken?: string;
|
|
984
1134
|
/**
|
|
1135
|
+
* @public
|
|
985
1136
|
* <p>A list of readiness checks associated with the account.</p>
|
|
986
1137
|
*/
|
|
987
1138
|
ReadinessChecks?: ReadinessCheckOutput[];
|
|
@@ -991,10 +1142,12 @@ export interface ListReadinessChecksResponse {
|
|
|
991
1142
|
*/
|
|
992
1143
|
export interface ListRecoveryGroupsRequest {
|
|
993
1144
|
/**
|
|
1145
|
+
* @public
|
|
994
1146
|
* <p>The number of objects that you want to return with this call.</p>
|
|
995
1147
|
*/
|
|
996
1148
|
MaxResults?: number;
|
|
997
1149
|
/**
|
|
1150
|
+
* @public
|
|
998
1151
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
999
1152
|
*/
|
|
1000
1153
|
NextToken?: string;
|
|
@@ -1004,10 +1157,12 @@ export interface ListRecoveryGroupsRequest {
|
|
|
1004
1157
|
*/
|
|
1005
1158
|
export interface ListRecoveryGroupsResponse {
|
|
1006
1159
|
/**
|
|
1160
|
+
* @public
|
|
1007
1161
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
1008
1162
|
*/
|
|
1009
1163
|
NextToken?: string;
|
|
1010
1164
|
/**
|
|
1165
|
+
* @public
|
|
1011
1166
|
* <p>A list of recovery groups.</p>
|
|
1012
1167
|
*/
|
|
1013
1168
|
RecoveryGroups?: RecoveryGroupOutput[];
|
|
@@ -1017,10 +1172,12 @@ export interface ListRecoveryGroupsResponse {
|
|
|
1017
1172
|
*/
|
|
1018
1173
|
export interface ListResourceSetsRequest {
|
|
1019
1174
|
/**
|
|
1175
|
+
* @public
|
|
1020
1176
|
* <p>The number of objects that you want to return with this call.</p>
|
|
1021
1177
|
*/
|
|
1022
1178
|
MaxResults?: number;
|
|
1023
1179
|
/**
|
|
1180
|
+
* @public
|
|
1024
1181
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
1025
1182
|
*/
|
|
1026
1183
|
NextToken?: string;
|
|
@@ -1030,10 +1187,12 @@ export interface ListResourceSetsRequest {
|
|
|
1030
1187
|
*/
|
|
1031
1188
|
export interface ListResourceSetsResponse {
|
|
1032
1189
|
/**
|
|
1190
|
+
* @public
|
|
1033
1191
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
1034
1192
|
*/
|
|
1035
1193
|
NextToken?: string;
|
|
1036
1194
|
/**
|
|
1195
|
+
* @public
|
|
1037
1196
|
* <p>A list of resource sets associated with the account.</p>
|
|
1038
1197
|
*/
|
|
1039
1198
|
ResourceSets?: ResourceSetOutput[];
|
|
@@ -1043,14 +1202,17 @@ export interface ListResourceSetsResponse {
|
|
|
1043
1202
|
*/
|
|
1044
1203
|
export interface ListRulesRequest {
|
|
1045
1204
|
/**
|
|
1205
|
+
* @public
|
|
1046
1206
|
* <p>The number of objects that you want to return with this call.</p>
|
|
1047
1207
|
*/
|
|
1048
1208
|
MaxResults?: number;
|
|
1049
1209
|
/**
|
|
1210
|
+
* @public
|
|
1050
1211
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
1051
1212
|
*/
|
|
1052
1213
|
NextToken?: string;
|
|
1053
1214
|
/**
|
|
1215
|
+
* @public
|
|
1054
1216
|
* <p>The resource type that a readiness rule applies to.</p>
|
|
1055
1217
|
*/
|
|
1056
1218
|
ResourceType?: string;
|
|
@@ -1060,10 +1222,12 @@ export interface ListRulesRequest {
|
|
|
1060
1222
|
*/
|
|
1061
1223
|
export interface ListRulesResponse {
|
|
1062
1224
|
/**
|
|
1225
|
+
* @public
|
|
1063
1226
|
* <p>The token that identifies which batch of results you want to see.</p>
|
|
1064
1227
|
*/
|
|
1065
1228
|
NextToken?: string;
|
|
1066
1229
|
/**
|
|
1230
|
+
* @public
|
|
1067
1231
|
* <p>A list of readiness rules for a specific resource type.</p>
|
|
1068
1232
|
*/
|
|
1069
1233
|
Rules?: ListRulesOutput[];
|
|
@@ -1073,6 +1237,7 @@ export interface ListRulesResponse {
|
|
|
1073
1237
|
*/
|
|
1074
1238
|
export interface ListTagsForResourcesRequest {
|
|
1075
1239
|
/**
|
|
1240
|
+
* @public
|
|
1076
1241
|
* <p>The Amazon Resource Name (ARN) for a resource.</p>
|
|
1077
1242
|
*/
|
|
1078
1243
|
ResourceArn: string | undefined;
|
|
@@ -1082,6 +1247,7 @@ export interface ListTagsForResourcesRequest {
|
|
|
1082
1247
|
*/
|
|
1083
1248
|
export interface ListTagsForResourcesResponse {
|
|
1084
1249
|
/**
|
|
1250
|
+
* @public
|
|
1085
1251
|
* <p></p>
|
|
1086
1252
|
*/
|
|
1087
1253
|
Tags?: Record<string, string>;
|
|
@@ -1091,10 +1257,12 @@ export interface ListTagsForResourcesResponse {
|
|
|
1091
1257
|
*/
|
|
1092
1258
|
export interface TagResourceRequest {
|
|
1093
1259
|
/**
|
|
1260
|
+
* @public
|
|
1094
1261
|
* <p>The Amazon Resource Name (ARN) for a resource.</p>
|
|
1095
1262
|
*/
|
|
1096
1263
|
ResourceArn: string | undefined;
|
|
1097
1264
|
/**
|
|
1265
|
+
* @public
|
|
1098
1266
|
* <p></p>
|
|
1099
1267
|
*/
|
|
1100
1268
|
Tags: Record<string, string> | undefined;
|
|
@@ -1109,10 +1277,12 @@ export interface TagResourceResponse {
|
|
|
1109
1277
|
*/
|
|
1110
1278
|
export interface UntagResourceRequest {
|
|
1111
1279
|
/**
|
|
1280
|
+
* @public
|
|
1112
1281
|
* <p>The Amazon Resource Name (ARN) for a resource.</p>
|
|
1113
1282
|
*/
|
|
1114
1283
|
ResourceArn: string | undefined;
|
|
1115
1284
|
/**
|
|
1285
|
+
* @public
|
|
1116
1286
|
* <p>The keys for tags you add to resources.</p>
|
|
1117
1287
|
*/
|
|
1118
1288
|
TagKeys: string[] | undefined;
|
|
@@ -1122,10 +1292,12 @@ export interface UntagResourceRequest {
|
|
|
1122
1292
|
*/
|
|
1123
1293
|
export interface UpdateCellRequest {
|
|
1124
1294
|
/**
|
|
1295
|
+
* @public
|
|
1125
1296
|
* <p>The name of the cell.</p>
|
|
1126
1297
|
*/
|
|
1127
1298
|
CellName: string | undefined;
|
|
1128
1299
|
/**
|
|
1300
|
+
* @public
|
|
1129
1301
|
* <p>A list of cell Amazon Resource Names (ARNs), which completely replaces the previous list.</p>
|
|
1130
1302
|
*/
|
|
1131
1303
|
Cells: string[] | undefined;
|
|
@@ -1135,22 +1307,27 @@ export interface UpdateCellRequest {
|
|
|
1135
1307
|
*/
|
|
1136
1308
|
export interface UpdateCellResponse {
|
|
1137
1309
|
/**
|
|
1310
|
+
* @public
|
|
1138
1311
|
* <p>The Amazon Resource Name (ARN) for the cell.</p>
|
|
1139
1312
|
*/
|
|
1140
1313
|
CellArn?: string;
|
|
1141
1314
|
/**
|
|
1315
|
+
* @public
|
|
1142
1316
|
* <p>The name of the cell.</p>
|
|
1143
1317
|
*/
|
|
1144
1318
|
CellName?: string;
|
|
1145
1319
|
/**
|
|
1320
|
+
* @public
|
|
1146
1321
|
* <p>A list of cell ARNs.</p>
|
|
1147
1322
|
*/
|
|
1148
1323
|
Cells?: string[];
|
|
1149
1324
|
/**
|
|
1325
|
+
* @public
|
|
1150
1326
|
* <p>The readiness scope for the cell, which can be a cell Amazon Resource Name (ARN) or a recovery group ARN. This is a list but currently can have only one element.</p>
|
|
1151
1327
|
*/
|
|
1152
1328
|
ParentReadinessScopes?: string[];
|
|
1153
1329
|
/**
|
|
1330
|
+
* @public
|
|
1154
1331
|
* <p>Tags on the resources.</p>
|
|
1155
1332
|
*/
|
|
1156
1333
|
Tags?: Record<string, string>;
|
|
@@ -1161,10 +1338,12 @@ export interface UpdateCellResponse {
|
|
|
1161
1338
|
*/
|
|
1162
1339
|
export interface UpdateReadinessCheckRequest {
|
|
1163
1340
|
/**
|
|
1341
|
+
* @public
|
|
1164
1342
|
* <p>Name of a readiness check.</p>
|
|
1165
1343
|
*/
|
|
1166
1344
|
ReadinessCheckName: string | undefined;
|
|
1167
1345
|
/**
|
|
1346
|
+
* @public
|
|
1168
1347
|
* <p>The name of the resource set to be checked.</p>
|
|
1169
1348
|
*/
|
|
1170
1349
|
ResourceSetName: string | undefined;
|
|
@@ -1174,18 +1353,22 @@ export interface UpdateReadinessCheckRequest {
|
|
|
1174
1353
|
*/
|
|
1175
1354
|
export interface UpdateReadinessCheckResponse {
|
|
1176
1355
|
/**
|
|
1356
|
+
* @public
|
|
1177
1357
|
* <p>The Amazon Resource Name (ARN) associated with a readiness check.</p>
|
|
1178
1358
|
*/
|
|
1179
1359
|
ReadinessCheckArn?: string;
|
|
1180
1360
|
/**
|
|
1361
|
+
* @public
|
|
1181
1362
|
* <p>Name of a readiness check.</p>
|
|
1182
1363
|
*/
|
|
1183
1364
|
ReadinessCheckName?: string;
|
|
1184
1365
|
/**
|
|
1366
|
+
* @public
|
|
1185
1367
|
* <p>Name of the resource set to be checked.</p>
|
|
1186
1368
|
*/
|
|
1187
1369
|
ResourceSet?: string;
|
|
1188
1370
|
/**
|
|
1371
|
+
* @public
|
|
1189
1372
|
* <p>A collection of tags associated with a resource.</p>
|
|
1190
1373
|
*/
|
|
1191
1374
|
Tags?: Record<string, string>;
|
|
@@ -1196,10 +1379,12 @@ export interface UpdateReadinessCheckResponse {
|
|
|
1196
1379
|
*/
|
|
1197
1380
|
export interface UpdateRecoveryGroupRequest {
|
|
1198
1381
|
/**
|
|
1382
|
+
* @public
|
|
1199
1383
|
* <p>A list of cell Amazon Resource Names (ARNs). This list completely replaces the previous list.</p>
|
|
1200
1384
|
*/
|
|
1201
1385
|
Cells: string[] | undefined;
|
|
1202
1386
|
/**
|
|
1387
|
+
* @public
|
|
1203
1388
|
* <p>The name of a recovery group.</p>
|
|
1204
1389
|
*/
|
|
1205
1390
|
RecoveryGroupName: string | undefined;
|
|
@@ -1209,18 +1394,22 @@ export interface UpdateRecoveryGroupRequest {
|
|
|
1209
1394
|
*/
|
|
1210
1395
|
export interface UpdateRecoveryGroupResponse {
|
|
1211
1396
|
/**
|
|
1397
|
+
* @public
|
|
1212
1398
|
* <p>A list of a cell's Amazon Resource Names (ARNs).</p>
|
|
1213
1399
|
*/
|
|
1214
1400
|
Cells?: string[];
|
|
1215
1401
|
/**
|
|
1402
|
+
* @public
|
|
1216
1403
|
* <p>The Amazon Resource Name (ARN) for the recovery group.</p>
|
|
1217
1404
|
*/
|
|
1218
1405
|
RecoveryGroupArn?: string;
|
|
1219
1406
|
/**
|
|
1407
|
+
* @public
|
|
1220
1408
|
* <p>The name of the recovery group.</p>
|
|
1221
1409
|
*/
|
|
1222
1410
|
RecoveryGroupName?: string;
|
|
1223
1411
|
/**
|
|
1412
|
+
* @public
|
|
1224
1413
|
* <p>The tags associated with the recovery group.</p>
|
|
1225
1414
|
*/
|
|
1226
1415
|
Tags?: Record<string, string>;
|
|
@@ -1231,14 +1420,17 @@ export interface UpdateRecoveryGroupResponse {
|
|
|
1231
1420
|
*/
|
|
1232
1421
|
export interface UpdateResourceSetRequest {
|
|
1233
1422
|
/**
|
|
1423
|
+
* @public
|
|
1234
1424
|
* <p>Name of a resource set.</p>
|
|
1235
1425
|
*/
|
|
1236
1426
|
ResourceSetName: string | undefined;
|
|
1237
1427
|
/**
|
|
1428
|
+
* @public
|
|
1238
1429
|
* <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
|
|
1239
1430
|
*/
|
|
1240
1431
|
ResourceSetType: string | undefined;
|
|
1241
1432
|
/**
|
|
1433
|
+
* @public
|
|
1242
1434
|
* <p>A list of resource objects.</p>
|
|
1243
1435
|
*/
|
|
1244
1436
|
Resources: Resource[] | undefined;
|
|
@@ -1248,22 +1440,27 @@ export interface UpdateResourceSetRequest {
|
|
|
1248
1440
|
*/
|
|
1249
1441
|
export interface UpdateResourceSetResponse {
|
|
1250
1442
|
/**
|
|
1443
|
+
* @public
|
|
1251
1444
|
* <p>The Amazon Resource Name (ARN) for the resource set.</p>
|
|
1252
1445
|
*/
|
|
1253
1446
|
ResourceSetArn?: string;
|
|
1254
1447
|
/**
|
|
1448
|
+
* @public
|
|
1255
1449
|
* <p>The name of the resource set.</p>
|
|
1256
1450
|
*/
|
|
1257
1451
|
ResourceSetName?: string;
|
|
1258
1452
|
/**
|
|
1453
|
+
* @public
|
|
1259
1454
|
* <p>The resource type of the resources in the resource set. Enter one of the following values for resource type:</p> <p>AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage, AWS::AutoScaling::AutoScalingGroup, AWS::CloudWatch::Alarm, AWS::EC2::CustomerGateway, AWS::DynamoDB::Table, AWS::EC2::Volume, AWS::ElasticLoadBalancing::LoadBalancer, AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::Lambda::Function, AWS::MSK::Cluster, AWS::RDS::DBCluster, AWS::Route53::HealthCheck, AWS::SQS::Queue, AWS::SNS::Topic, AWS::SNS::Subscription, AWS::EC2::VPC, AWS::EC2::VPNConnection, AWS::EC2::VPNGateway, AWS::Route53RecoveryReadiness::DNSTargetResource</p>
|
|
1260
1455
|
*/
|
|
1261
1456
|
ResourceSetType?: string;
|
|
1262
1457
|
/**
|
|
1458
|
+
* @public
|
|
1263
1459
|
* <p>A list of resource objects.</p>
|
|
1264
1460
|
*/
|
|
1265
1461
|
Resources?: Resource[];
|
|
1266
1462
|
/**
|
|
1463
|
+
* @public
|
|
1267
1464
|
* <p>A collection of tags associated with a resource.</p>
|
|
1268
1465
|
*/
|
|
1269
1466
|
Tags?: Record<string, string>;
|
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.385.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,15 +21,15 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|