@aws-sdk/client-docdb-elastic 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.
|
@@ -32,10 +32,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
32
32
|
readonly name: "ConflictException";
|
|
33
33
|
readonly $fault: "client";
|
|
34
34
|
/**
|
|
35
|
+
* @public
|
|
35
36
|
* <p>The ID of the resource where there was an access conflict.</p>
|
|
36
37
|
*/
|
|
37
38
|
resourceId: string | undefined;
|
|
38
39
|
/**
|
|
40
|
+
* @public
|
|
39
41
|
* <p>The type of the resource where there was an access conflict.</p>
|
|
40
42
|
*/
|
|
41
43
|
resourceType: string | undefined;
|
|
@@ -49,6 +51,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
49
51
|
*/
|
|
50
52
|
export interface CreateClusterInput {
|
|
51
53
|
/**
|
|
54
|
+
* @public
|
|
52
55
|
* <p>The name of the new Elastic DocumentDB cluster. This parameter is stored as
|
|
53
56
|
* a lowercase string.</p>
|
|
54
57
|
* <p>
|
|
@@ -70,10 +73,12 @@ export interface CreateClusterInput {
|
|
|
70
73
|
*/
|
|
71
74
|
clusterName: string | undefined;
|
|
72
75
|
/**
|
|
76
|
+
* @public
|
|
73
77
|
* <p>The authentication type for the Elastic DocumentDB cluster.</p>
|
|
74
78
|
*/
|
|
75
79
|
authType: Auth | string | undefined;
|
|
76
80
|
/**
|
|
81
|
+
* @public
|
|
77
82
|
* <p>The name of the Elastic DocumentDB cluster administrator.</p>
|
|
78
83
|
* <p>
|
|
79
84
|
* <i>Constraints</i>:</p>
|
|
@@ -91,6 +96,7 @@ export interface CreateClusterInput {
|
|
|
91
96
|
*/
|
|
92
97
|
adminUserName: string | undefined;
|
|
93
98
|
/**
|
|
99
|
+
* @public
|
|
94
100
|
* <p>The password for the Elastic DocumentDB cluster administrator and can
|
|
95
101
|
* contain any printable ASCII characters.</p>
|
|
96
102
|
* <p>
|
|
@@ -106,23 +112,28 @@ export interface CreateClusterInput {
|
|
|
106
112
|
*/
|
|
107
113
|
adminUserPassword: string | undefined;
|
|
108
114
|
/**
|
|
115
|
+
* @public
|
|
109
116
|
* <p>The capacity of each shard in the new Elastic DocumentDB cluster.</p>
|
|
110
117
|
*/
|
|
111
118
|
shardCapacity: number | undefined;
|
|
112
119
|
/**
|
|
120
|
+
* @public
|
|
113
121
|
* <p>The number of shards to create in the new Elastic DocumentDB cluster.</p>
|
|
114
122
|
*/
|
|
115
123
|
shardCount: number | undefined;
|
|
116
124
|
/**
|
|
125
|
+
* @public
|
|
117
126
|
* <p>A list of EC2 VPC security groups to associate with the new
|
|
118
127
|
* Elastic DocumentDB cluster.</p>
|
|
119
128
|
*/
|
|
120
129
|
vpcSecurityGroupIds?: string[];
|
|
121
130
|
/**
|
|
131
|
+
* @public
|
|
122
132
|
* <p>The Amazon EC2 subnet IDs for the new Elastic DocumentDB cluster.</p>
|
|
123
133
|
*/
|
|
124
134
|
subnetIds?: string[];
|
|
125
135
|
/**
|
|
136
|
+
* @public
|
|
126
137
|
* <p>The KMS key identifier to use to encrypt the new Elastic DocumentDB cluster.</p>
|
|
127
138
|
* <p>The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
|
128
139
|
* encryption key. If you are creating a cluster using the same Amazon account
|
|
@@ -134,10 +145,12 @@ export interface CreateClusterInput {
|
|
|
134
145
|
*/
|
|
135
146
|
kmsKeyId?: string;
|
|
136
147
|
/**
|
|
148
|
+
* @public
|
|
137
149
|
* <p>The client token for the Elastic DocumentDB cluster.</p>
|
|
138
150
|
*/
|
|
139
151
|
clientToken?: string;
|
|
140
152
|
/**
|
|
153
|
+
* @public
|
|
141
154
|
* <p>The weekly time range during which system maintenance can occur,
|
|
142
155
|
* in Universal Coordinated Time (UTC).</p>
|
|
143
156
|
* <p>
|
|
@@ -152,6 +165,7 @@ export interface CreateClusterInput {
|
|
|
152
165
|
*/
|
|
153
166
|
preferredMaintenanceWindow?: string;
|
|
154
167
|
/**
|
|
168
|
+
* @public
|
|
155
169
|
* <p>The tags to be assigned to the new Elastic DocumentDB cluster.</p>
|
|
156
170
|
*/
|
|
157
171
|
tags?: Record<string, string>;
|
|
@@ -181,50 +195,62 @@ export type Status = (typeof Status)[keyof typeof Status];
|
|
|
181
195
|
*/
|
|
182
196
|
export interface Cluster {
|
|
183
197
|
/**
|
|
198
|
+
* @public
|
|
184
199
|
* <p>The name of the Elastic DocumentDB cluster.</p>
|
|
185
200
|
*/
|
|
186
201
|
clusterName: string | undefined;
|
|
187
202
|
/**
|
|
203
|
+
* @public
|
|
188
204
|
* <p>The arn of the Elastic DocumentDB cluster.</p>
|
|
189
205
|
*/
|
|
190
206
|
clusterArn: string | undefined;
|
|
191
207
|
/**
|
|
208
|
+
* @public
|
|
192
209
|
* <p>The status of the Elastic DocumentDB cluster.</p>
|
|
193
210
|
*/
|
|
194
211
|
status: Status | string | undefined;
|
|
195
212
|
/**
|
|
213
|
+
* @public
|
|
196
214
|
* <p>The URL used to connect to the Elastic DocumentDB cluster.</p>
|
|
197
215
|
*/
|
|
198
216
|
clusterEndpoint: string | undefined;
|
|
199
217
|
/**
|
|
218
|
+
* @public
|
|
200
219
|
* <p>The time when the Elastic DocumentDB cluster was created in Universal Coordinated Time (UTC).</p>
|
|
201
220
|
*/
|
|
202
221
|
createTime: string | undefined;
|
|
203
222
|
/**
|
|
223
|
+
* @public
|
|
204
224
|
* <p>The name of the Elastic DocumentDB cluster administrator.</p>
|
|
205
225
|
*/
|
|
206
226
|
adminUserName: string | undefined;
|
|
207
227
|
/**
|
|
228
|
+
* @public
|
|
208
229
|
* <p>The authentication type for the Elastic DocumentDB cluster.</p>
|
|
209
230
|
*/
|
|
210
231
|
authType: Auth | string | undefined;
|
|
211
232
|
/**
|
|
233
|
+
* @public
|
|
212
234
|
* <p>The capacity of each shard in the Elastic DocumentDB cluster.</p>
|
|
213
235
|
*/
|
|
214
236
|
shardCapacity: number | undefined;
|
|
215
237
|
/**
|
|
238
|
+
* @public
|
|
216
239
|
* <p>The number of shards in the Elastic DocumentDB cluster.</p>
|
|
217
240
|
*/
|
|
218
241
|
shardCount: number | undefined;
|
|
219
242
|
/**
|
|
243
|
+
* @public
|
|
220
244
|
* <p>A list of EC2 VPC security groups associated with this cluster.</p>
|
|
221
245
|
*/
|
|
222
246
|
vpcSecurityGroupIds: string[] | undefined;
|
|
223
247
|
/**
|
|
248
|
+
* @public
|
|
224
249
|
* <p>The Amazon EC2 subnet IDs for the Elastic DocumentDB cluster.</p>
|
|
225
250
|
*/
|
|
226
251
|
subnetIds: string[] | undefined;
|
|
227
252
|
/**
|
|
253
|
+
* @public
|
|
228
254
|
* <p>The weekly time range during which system maintenance can occur,
|
|
229
255
|
* in Universal Coordinated Time (UTC).</p>
|
|
230
256
|
* <p>
|
|
@@ -233,6 +259,7 @@ export interface Cluster {
|
|
|
233
259
|
*/
|
|
234
260
|
preferredMaintenanceWindow: string | undefined;
|
|
235
261
|
/**
|
|
262
|
+
* @public
|
|
236
263
|
* <p>The KMS key identifier to use to encrypt the Elastic DocumentDB cluster.</p>
|
|
237
264
|
*/
|
|
238
265
|
kmsKeyId: string | undefined;
|
|
@@ -242,6 +269,7 @@ export interface Cluster {
|
|
|
242
269
|
*/
|
|
243
270
|
export interface CreateClusterOutput {
|
|
244
271
|
/**
|
|
272
|
+
* @public
|
|
245
273
|
* <p>The new Elastic DocumentDB cluster that has been created.</p>
|
|
246
274
|
*/
|
|
247
275
|
cluster: Cluster | undefined;
|
|
@@ -280,6 +308,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
280
308
|
readonly $fault: "client";
|
|
281
309
|
$retryable: {};
|
|
282
310
|
/**
|
|
311
|
+
* @public
|
|
283
312
|
* <p>The number of seconds to wait before retrying the operation.</p>
|
|
284
313
|
*/
|
|
285
314
|
retryAfterSeconds?: number;
|
|
@@ -294,10 +323,12 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
294
323
|
*/
|
|
295
324
|
export interface ValidationExceptionField {
|
|
296
325
|
/**
|
|
326
|
+
* @public
|
|
297
327
|
* <p>The name of the field where the validation exception occurred.</p>
|
|
298
328
|
*/
|
|
299
329
|
name: string | undefined;
|
|
300
330
|
/**
|
|
331
|
+
* @public
|
|
301
332
|
* <p>An error message describing the validation exception in this field.</p>
|
|
302
333
|
*/
|
|
303
334
|
message: string | undefined;
|
|
@@ -324,11 +355,13 @@ export declare class ValidationException extends __BaseException {
|
|
|
324
355
|
readonly name: "ValidationException";
|
|
325
356
|
readonly $fault: "client";
|
|
326
357
|
/**
|
|
358
|
+
* @public
|
|
327
359
|
* <p>The reason why the validation exception occurred (one of <code>unknownOperation</code>,
|
|
328
360
|
* <code>cannotParse</code>, <code>fieldValidationFailed</code>, or <code>other</code>).</p>
|
|
329
361
|
*/
|
|
330
362
|
reason: ValidationExceptionReason | string | undefined;
|
|
331
363
|
/**
|
|
364
|
+
* @public
|
|
332
365
|
* <p>A list of the fields in which the validation exception occurred.</p>
|
|
333
366
|
*/
|
|
334
367
|
fieldList?: ValidationExceptionField[];
|
|
@@ -342,14 +375,17 @@ export declare class ValidationException extends __BaseException {
|
|
|
342
375
|
*/
|
|
343
376
|
export interface CreateClusterSnapshotInput {
|
|
344
377
|
/**
|
|
378
|
+
* @public
|
|
345
379
|
* <p>The arn of the Elastic DocumentDB cluster that the snapshot will be taken from.</p>
|
|
346
380
|
*/
|
|
347
381
|
clusterArn: string | undefined;
|
|
348
382
|
/**
|
|
383
|
+
* @public
|
|
349
384
|
* <p>The name of the Elastic DocumentDB snapshot.</p>
|
|
350
385
|
*/
|
|
351
386
|
snapshotName: string | undefined;
|
|
352
387
|
/**
|
|
388
|
+
* @public
|
|
353
389
|
* <p>The tags to be assigned to the new Elastic DocumentDB snapshot.</p>
|
|
354
390
|
*/
|
|
355
391
|
tags?: Record<string, string>;
|
|
@@ -360,42 +396,52 @@ export interface CreateClusterSnapshotInput {
|
|
|
360
396
|
*/
|
|
361
397
|
export interface ClusterSnapshot {
|
|
362
398
|
/**
|
|
399
|
+
* @public
|
|
363
400
|
* <p>A list of the IDs of subnets associated with the DB cluster snapshot.</p>
|
|
364
401
|
*/
|
|
365
402
|
subnetIds: string[] | undefined;
|
|
366
403
|
/**
|
|
404
|
+
* @public
|
|
367
405
|
* <p>The name of the Elastic DocumentDB snapshot.</p>
|
|
368
406
|
*/
|
|
369
407
|
snapshotName: string | undefined;
|
|
370
408
|
/**
|
|
409
|
+
* @public
|
|
371
410
|
* <p>The arn of the Elastic DocumentDB snapshot</p>
|
|
372
411
|
*/
|
|
373
412
|
snapshotArn: string | undefined;
|
|
374
413
|
/**
|
|
414
|
+
* @public
|
|
375
415
|
* <p>The time when the Elastic DocumentDB snapshot was created in Universal Coordinated Time (UTC).</p>
|
|
376
416
|
*/
|
|
377
417
|
snapshotCreationTime: string | undefined;
|
|
378
418
|
/**
|
|
419
|
+
* @public
|
|
379
420
|
* <p>The arn of the Elastic DocumentDB cluster.</p>
|
|
380
421
|
*/
|
|
381
422
|
clusterArn: string | undefined;
|
|
382
423
|
/**
|
|
424
|
+
* @public
|
|
383
425
|
* <p>The time when the Elastic DocumentDB cluster was created in Universal Coordinated Time (UTC).</p>
|
|
384
426
|
*/
|
|
385
427
|
clusterCreationTime: string | undefined;
|
|
386
428
|
/**
|
|
429
|
+
* @public
|
|
387
430
|
* <p>The status of the Elastic DocumentDB snapshot.</p>
|
|
388
431
|
*/
|
|
389
432
|
status: Status | string | undefined;
|
|
390
433
|
/**
|
|
434
|
+
* @public
|
|
391
435
|
* <p>A list of the IDs of the VPC security groups associated with the cluster snapshot.</p>
|
|
392
436
|
*/
|
|
393
437
|
vpcSecurityGroupIds: string[] | undefined;
|
|
394
438
|
/**
|
|
439
|
+
* @public
|
|
395
440
|
* <p>The name of the Elastic DocumentDB cluster administrator.</p>
|
|
396
441
|
*/
|
|
397
442
|
adminUserName: string | undefined;
|
|
398
443
|
/**
|
|
444
|
+
* @public
|
|
399
445
|
* <p>The KMS key identifier to use to encrypt the Elastic DocumentDB cluster.</p>
|
|
400
446
|
*/
|
|
401
447
|
kmsKeyId: string | undefined;
|
|
@@ -405,6 +451,7 @@ export interface ClusterSnapshot {
|
|
|
405
451
|
*/
|
|
406
452
|
export interface CreateClusterSnapshotOutput {
|
|
407
453
|
/**
|
|
454
|
+
* @public
|
|
408
455
|
* <p>Returns information about the new Elastic DocumentDB snapshot.</p>
|
|
409
456
|
*/
|
|
410
457
|
snapshot: ClusterSnapshot | undefined;
|
|
@@ -417,10 +464,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
417
464
|
readonly name: "ResourceNotFoundException";
|
|
418
465
|
readonly $fault: "client";
|
|
419
466
|
/**
|
|
467
|
+
* @public
|
|
420
468
|
* <p>The ID of the resource that could not be located.</p>
|
|
421
469
|
*/
|
|
422
470
|
resourceId: string | undefined;
|
|
423
471
|
/**
|
|
472
|
+
* @public
|
|
424
473
|
* <p>The type of the resource that could not be found.</p>
|
|
425
474
|
*/
|
|
426
475
|
resourceType: string | undefined;
|
|
@@ -434,6 +483,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
434
483
|
*/
|
|
435
484
|
export interface DeleteClusterInput {
|
|
436
485
|
/**
|
|
486
|
+
* @public
|
|
437
487
|
* <p>The arn of the Elastic DocumentDB cluster that is to be deleted.</p>
|
|
438
488
|
*/
|
|
439
489
|
clusterArn: string | undefined;
|
|
@@ -443,6 +493,7 @@ export interface DeleteClusterInput {
|
|
|
443
493
|
*/
|
|
444
494
|
export interface DeleteClusterOutput {
|
|
445
495
|
/**
|
|
496
|
+
* @public
|
|
446
497
|
* <p>Returns information about the newly deleted Elastic DocumentDB cluster.</p>
|
|
447
498
|
*/
|
|
448
499
|
cluster: Cluster | undefined;
|
|
@@ -452,6 +503,7 @@ export interface DeleteClusterOutput {
|
|
|
452
503
|
*/
|
|
453
504
|
export interface DeleteClusterSnapshotInput {
|
|
454
505
|
/**
|
|
506
|
+
* @public
|
|
455
507
|
* <p>The arn of the Elastic DocumentDB snapshot that is to be deleted.</p>
|
|
456
508
|
*/
|
|
457
509
|
snapshotArn: string | undefined;
|
|
@@ -461,6 +513,7 @@ export interface DeleteClusterSnapshotInput {
|
|
|
461
513
|
*/
|
|
462
514
|
export interface DeleteClusterSnapshotOutput {
|
|
463
515
|
/**
|
|
516
|
+
* @public
|
|
464
517
|
* <p>Returns information about the newly deleted Elastic DocumentDB snapshot.</p>
|
|
465
518
|
*/
|
|
466
519
|
snapshot: ClusterSnapshot | undefined;
|
|
@@ -470,6 +523,7 @@ export interface DeleteClusterSnapshotOutput {
|
|
|
470
523
|
*/
|
|
471
524
|
export interface GetClusterInput {
|
|
472
525
|
/**
|
|
526
|
+
* @public
|
|
473
527
|
* <p>The arn of the Elastic DocumentDB cluster.</p>
|
|
474
528
|
*/
|
|
475
529
|
clusterArn: string | undefined;
|
|
@@ -479,6 +533,7 @@ export interface GetClusterInput {
|
|
|
479
533
|
*/
|
|
480
534
|
export interface GetClusterOutput {
|
|
481
535
|
/**
|
|
536
|
+
* @public
|
|
482
537
|
* <p>Returns information about a specific Elastic DocumentDB cluster.</p>
|
|
483
538
|
*/
|
|
484
539
|
cluster: Cluster | undefined;
|
|
@@ -488,6 +543,7 @@ export interface GetClusterOutput {
|
|
|
488
543
|
*/
|
|
489
544
|
export interface GetClusterSnapshotInput {
|
|
490
545
|
/**
|
|
546
|
+
* @public
|
|
491
547
|
* <p>The arn of the Elastic DocumentDB snapshot.</p>
|
|
492
548
|
*/
|
|
493
549
|
snapshotArn: string | undefined;
|
|
@@ -497,6 +553,7 @@ export interface GetClusterSnapshotInput {
|
|
|
497
553
|
*/
|
|
498
554
|
export interface GetClusterSnapshotOutput {
|
|
499
555
|
/**
|
|
556
|
+
* @public
|
|
500
557
|
* <p>Returns information about a specific Elastic DocumentDB snapshot.</p>
|
|
501
558
|
*/
|
|
502
559
|
snapshot: ClusterSnapshot | undefined;
|
|
@@ -506,10 +563,12 @@ export interface GetClusterSnapshotOutput {
|
|
|
506
563
|
*/
|
|
507
564
|
export interface ListClustersInput {
|
|
508
565
|
/**
|
|
566
|
+
* @public
|
|
509
567
|
* <p>The nextToken which is used the get the next page of data.</p>
|
|
510
568
|
*/
|
|
511
569
|
nextToken?: string;
|
|
512
570
|
/**
|
|
571
|
+
* @public
|
|
513
572
|
* <p>The maximum number of entries to recieve in the response.</p>
|
|
514
573
|
*/
|
|
515
574
|
maxResults?: number;
|
|
@@ -520,14 +579,17 @@ export interface ListClustersInput {
|
|
|
520
579
|
*/
|
|
521
580
|
export interface ClusterInList {
|
|
522
581
|
/**
|
|
582
|
+
* @public
|
|
523
583
|
* <p>The name of the Elastic DocumentDB cluster.</p>
|
|
524
584
|
*/
|
|
525
585
|
clusterName: string | undefined;
|
|
526
586
|
/**
|
|
587
|
+
* @public
|
|
527
588
|
* <p>The arn of the Elastic DocumentDB cluster.</p>
|
|
528
589
|
*/
|
|
529
590
|
clusterArn: string | undefined;
|
|
530
591
|
/**
|
|
592
|
+
* @public
|
|
531
593
|
* <p>The status of the Elastic DocumentDB cluster.</p>
|
|
532
594
|
*/
|
|
533
595
|
status: Status | string | undefined;
|
|
@@ -537,10 +599,12 @@ export interface ClusterInList {
|
|
|
537
599
|
*/
|
|
538
600
|
export interface ListClustersOutput {
|
|
539
601
|
/**
|
|
602
|
+
* @public
|
|
540
603
|
* <p>A list of Elastic DocumentDB cluster.</p>
|
|
541
604
|
*/
|
|
542
605
|
clusters?: ClusterInList[];
|
|
543
606
|
/**
|
|
607
|
+
* @public
|
|
544
608
|
* <p>The response will provide a nextToken if there is more data beyond the maxResults.</p>
|
|
545
609
|
* <p>If there is no more data in the responce, the nextToken will not be returned.</p>
|
|
546
610
|
*/
|
|
@@ -551,14 +615,17 @@ export interface ListClustersOutput {
|
|
|
551
615
|
*/
|
|
552
616
|
export interface ListClusterSnapshotsInput {
|
|
553
617
|
/**
|
|
618
|
+
* @public
|
|
554
619
|
* <p>The arn of the Elastic DocumentDB cluster.</p>
|
|
555
620
|
*/
|
|
556
621
|
clusterArn?: string;
|
|
557
622
|
/**
|
|
623
|
+
* @public
|
|
558
624
|
* <p>The nextToken which is used the get the next page of data.</p>
|
|
559
625
|
*/
|
|
560
626
|
nextToken?: string;
|
|
561
627
|
/**
|
|
628
|
+
* @public
|
|
562
629
|
* <p>The maximum number of entries to recieve in the response.</p>
|
|
563
630
|
*/
|
|
564
631
|
maxResults?: number;
|
|
@@ -569,22 +636,27 @@ export interface ListClusterSnapshotsInput {
|
|
|
569
636
|
*/
|
|
570
637
|
export interface ClusterSnapshotInList {
|
|
571
638
|
/**
|
|
639
|
+
* @public
|
|
572
640
|
* <p>The name of the Elastic DocumentDB snapshot.</p>
|
|
573
641
|
*/
|
|
574
642
|
snapshotName: string | undefined;
|
|
575
643
|
/**
|
|
644
|
+
* @public
|
|
576
645
|
* <p>The arn of the Elastic DocumentDB snapshot</p>
|
|
577
646
|
*/
|
|
578
647
|
snapshotArn: string | undefined;
|
|
579
648
|
/**
|
|
649
|
+
* @public
|
|
580
650
|
* <p>The arn of the Elastic DocumentDB cluster.</p>
|
|
581
651
|
*/
|
|
582
652
|
clusterArn: string | undefined;
|
|
583
653
|
/**
|
|
654
|
+
* @public
|
|
584
655
|
* <p>The status of the Elastic DocumentDB snapshot.</p>
|
|
585
656
|
*/
|
|
586
657
|
status: Status | string | undefined;
|
|
587
658
|
/**
|
|
659
|
+
* @public
|
|
588
660
|
* <p>The time when the Elastic DocumentDB snapshot was created in Universal Coordinated Time (UTC).</p>
|
|
589
661
|
*/
|
|
590
662
|
snapshotCreationTime: string | undefined;
|
|
@@ -594,10 +666,12 @@ export interface ClusterSnapshotInList {
|
|
|
594
666
|
*/
|
|
595
667
|
export interface ListClusterSnapshotsOutput {
|
|
596
668
|
/**
|
|
669
|
+
* @public
|
|
597
670
|
* <p>A list of Elastic DocumentDB snapshots for a specified cluster.</p>
|
|
598
671
|
*/
|
|
599
672
|
snapshots?: ClusterSnapshotInList[];
|
|
600
673
|
/**
|
|
674
|
+
* @public
|
|
601
675
|
* <p>The response will provide a nextToken if there is more data beyond the maxResults.</p>
|
|
602
676
|
* <p>If there is no more data in the responce, the nextToken will not be returned.</p>
|
|
603
677
|
*/
|
|
@@ -608,6 +682,7 @@ export interface ListClusterSnapshotsOutput {
|
|
|
608
682
|
*/
|
|
609
683
|
export interface ListTagsForResourceRequest {
|
|
610
684
|
/**
|
|
685
|
+
* @public
|
|
611
686
|
* <p>The arn of the Elastic DocumentDB resource.</p>
|
|
612
687
|
*/
|
|
613
688
|
resourceArn: string | undefined;
|
|
@@ -617,6 +692,7 @@ export interface ListTagsForResourceRequest {
|
|
|
617
692
|
*/
|
|
618
693
|
export interface ListTagsForResourceResponse {
|
|
619
694
|
/**
|
|
695
|
+
* @public
|
|
620
696
|
* <p>The list of tags for the specified Elastic DocumentDB resource.</p>
|
|
621
697
|
*/
|
|
622
698
|
tags?: Record<string, string>;
|
|
@@ -626,23 +702,28 @@ export interface ListTagsForResourceResponse {
|
|
|
626
702
|
*/
|
|
627
703
|
export interface RestoreClusterFromSnapshotInput {
|
|
628
704
|
/**
|
|
705
|
+
* @public
|
|
629
706
|
* <p>The name of the Elastic DocumentDB cluster.</p>
|
|
630
707
|
*/
|
|
631
708
|
clusterName: string | undefined;
|
|
632
709
|
/**
|
|
710
|
+
* @public
|
|
633
711
|
* <p>The arn of the Elastic DocumentDB snapshot.</p>
|
|
634
712
|
*/
|
|
635
713
|
snapshotArn: string | undefined;
|
|
636
714
|
/**
|
|
715
|
+
* @public
|
|
637
716
|
* <p>A list of EC2 VPC security groups to associate with the
|
|
638
717
|
* Elastic DocumentDB cluster.</p>
|
|
639
718
|
*/
|
|
640
719
|
vpcSecurityGroupIds?: string[];
|
|
641
720
|
/**
|
|
721
|
+
* @public
|
|
642
722
|
* <p>The Amazon EC2 subnet IDs for the Elastic DocumentDB cluster.</p>
|
|
643
723
|
*/
|
|
644
724
|
subnetIds?: string[];
|
|
645
725
|
/**
|
|
726
|
+
* @public
|
|
646
727
|
* <p>The KMS key identifier to use to encrypt the new Elastic DocumentDB cluster.</p>
|
|
647
728
|
* <p>The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
|
648
729
|
* encryption key. If you are creating a cluster using the same Amazon account
|
|
@@ -654,6 +735,7 @@ export interface RestoreClusterFromSnapshotInput {
|
|
|
654
735
|
*/
|
|
655
736
|
kmsKeyId?: string;
|
|
656
737
|
/**
|
|
738
|
+
* @public
|
|
657
739
|
* <p>A list of the tag names to be assigned to the restored DB cluster,
|
|
658
740
|
* in the form of an array of key-value pairs in which the key
|
|
659
741
|
* is the tag name and the value is the key value.</p>
|
|
@@ -665,6 +747,7 @@ export interface RestoreClusterFromSnapshotInput {
|
|
|
665
747
|
*/
|
|
666
748
|
export interface RestoreClusterFromSnapshotOutput {
|
|
667
749
|
/**
|
|
750
|
+
* @public
|
|
668
751
|
* <p>Returns information about a the restored Elastic DocumentDB cluster.</p>
|
|
669
752
|
*/
|
|
670
753
|
cluster: Cluster | undefined;
|
|
@@ -674,10 +757,12 @@ export interface RestoreClusterFromSnapshotOutput {
|
|
|
674
757
|
*/
|
|
675
758
|
export interface TagResourceRequest {
|
|
676
759
|
/**
|
|
760
|
+
* @public
|
|
677
761
|
* <p>The arn of the Elastic DocumentDB resource.</p>
|
|
678
762
|
*/
|
|
679
763
|
resourceArn: string | undefined;
|
|
680
764
|
/**
|
|
765
|
+
* @public
|
|
681
766
|
* <p>The tags to be assigned to the Elastic DocumentDB resource.</p>
|
|
682
767
|
*/
|
|
683
768
|
tags: Record<string, string> | undefined;
|
|
@@ -692,10 +777,12 @@ export interface TagResourceResponse {
|
|
|
692
777
|
*/
|
|
693
778
|
export interface UntagResourceRequest {
|
|
694
779
|
/**
|
|
780
|
+
* @public
|
|
695
781
|
* <p>The arn of the Elastic DocumentDB resource.</p>
|
|
696
782
|
*/
|
|
697
783
|
resourceArn: string | undefined;
|
|
698
784
|
/**
|
|
785
|
+
* @public
|
|
699
786
|
* <p>The tag keys to be removed from the Elastic DocumentDB resource.</p>
|
|
700
787
|
*/
|
|
701
788
|
tagKeys: string[] | undefined;
|
|
@@ -710,31 +797,38 @@ export interface UntagResourceResponse {
|
|
|
710
797
|
*/
|
|
711
798
|
export interface UpdateClusterInput {
|
|
712
799
|
/**
|
|
800
|
+
* @public
|
|
713
801
|
* <p>The arn of the Elastic DocumentDB cluster.</p>
|
|
714
802
|
*/
|
|
715
803
|
clusterArn: string | undefined;
|
|
716
804
|
/**
|
|
805
|
+
* @public
|
|
717
806
|
* <p>The authentication type for the Elastic DocumentDB cluster.</p>
|
|
718
807
|
*/
|
|
719
808
|
authType?: Auth | string;
|
|
720
809
|
/**
|
|
810
|
+
* @public
|
|
721
811
|
* <p>The capacity of each shard in the Elastic DocumentDB cluster.</p>
|
|
722
812
|
*/
|
|
723
813
|
shardCapacity?: number;
|
|
724
814
|
/**
|
|
815
|
+
* @public
|
|
725
816
|
* <p>The number of shards to create in the Elastic DocumentDB cluster.</p>
|
|
726
817
|
*/
|
|
727
818
|
shardCount?: number;
|
|
728
819
|
/**
|
|
820
|
+
* @public
|
|
729
821
|
* <p>A list of EC2 VPC security groups to associate with the new
|
|
730
822
|
* Elastic DocumentDB cluster.</p>
|
|
731
823
|
*/
|
|
732
824
|
vpcSecurityGroupIds?: string[];
|
|
733
825
|
/**
|
|
826
|
+
* @public
|
|
734
827
|
* <p>The number of shards to create in the Elastic DocumentDB cluster.</p>
|
|
735
828
|
*/
|
|
736
829
|
subnetIds?: string[];
|
|
737
830
|
/**
|
|
831
|
+
* @public
|
|
738
832
|
* <p>The password for the Elastic DocumentDB cluster administrator. This password can
|
|
739
833
|
* contain any printable ASCII character except forward slash (/),
|
|
740
834
|
* double quote ("), or the "at" symbol (@).</p>
|
|
@@ -743,10 +837,12 @@ export interface UpdateClusterInput {
|
|
|
743
837
|
*/
|
|
744
838
|
adminUserPassword?: string;
|
|
745
839
|
/**
|
|
840
|
+
* @public
|
|
746
841
|
* <p>The client token for the Elastic DocumentDB cluster.</p>
|
|
747
842
|
*/
|
|
748
843
|
clientToken?: string;
|
|
749
844
|
/**
|
|
845
|
+
* @public
|
|
750
846
|
* <p>The weekly time range during which system maintenance can occur,
|
|
751
847
|
* in Universal Coordinated Time (UTC).</p>
|
|
752
848
|
* <p>
|
|
@@ -766,6 +862,7 @@ export interface UpdateClusterInput {
|
|
|
766
862
|
*/
|
|
767
863
|
export interface UpdateClusterOutput {
|
|
768
864
|
/**
|
|
865
|
+
* @public
|
|
769
866
|
* <p>Returns information about the updated Elastic DocumentDB cluster.</p>
|
|
770
867
|
*/
|
|
771
868
|
cluster: Cluster | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-docdb-elastic",
|
|
3
3
|
"description": "AWS SDK for JavaScript Docdb Elastic 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",
|