@aws-sdk/client-redshift-serverless 3.379.1 → 3.382.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 +286 -0
- package/package.json +5 -5
|
@@ -19,6 +19,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
19
19
|
*/
|
|
20
20
|
export interface ConfigParameter {
|
|
21
21
|
/**
|
|
22
|
+
* @public
|
|
22
23
|
* <p>The key of the parameter. The
|
|
23
24
|
* options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitivity_identifier</code>, <code>enable_user_activity_logging</code>,
|
|
24
25
|
* <code>query_group</code>, <code>search_path</code>, and query monitoring metrics that let
|
|
@@ -27,6 +28,7 @@ export interface ConfigParameter {
|
|
|
27
28
|
*/
|
|
28
29
|
parameterKey?: string;
|
|
29
30
|
/**
|
|
31
|
+
* @public
|
|
30
32
|
* <p>The value of the parameter to set.</p>
|
|
31
33
|
*/
|
|
32
34
|
parameterValue?: string;
|
|
@@ -49,10 +51,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
49
51
|
*/
|
|
50
52
|
export interface Tag {
|
|
51
53
|
/**
|
|
54
|
+
* @public
|
|
52
55
|
* <p>The key to use in the tag.</p>
|
|
53
56
|
*/
|
|
54
57
|
key: string | undefined;
|
|
55
58
|
/**
|
|
59
|
+
* @public
|
|
56
60
|
* <p>The value of the tag.</p>
|
|
57
61
|
*/
|
|
58
62
|
value: string | undefined;
|
|
@@ -62,18 +66,22 @@ export interface Tag {
|
|
|
62
66
|
*/
|
|
63
67
|
export interface ConvertRecoveryPointToSnapshotRequest {
|
|
64
68
|
/**
|
|
69
|
+
* @public
|
|
65
70
|
* <p>The unique identifier of the recovery point.</p>
|
|
66
71
|
*/
|
|
67
72
|
recoveryPointId: string | undefined;
|
|
68
73
|
/**
|
|
74
|
+
* @public
|
|
69
75
|
* <p>The name of the snapshot.</p>
|
|
70
76
|
*/
|
|
71
77
|
snapshotName: string | undefined;
|
|
72
78
|
/**
|
|
79
|
+
* @public
|
|
73
80
|
* <p>How long to retain the snapshot.</p>
|
|
74
81
|
*/
|
|
75
82
|
retentionPeriod?: number;
|
|
76
83
|
/**
|
|
84
|
+
* @public
|
|
77
85
|
* <p>An array of <a href="https://docs.aws.amazon.com/redshift-serverless/latest/APIReference/API_Tag.html">Tag objects</a>
|
|
78
86
|
* to associate with the created snapshot.</p>
|
|
79
87
|
*/
|
|
@@ -101,83 +109,103 @@ export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus
|
|
|
101
109
|
*/
|
|
102
110
|
export interface Snapshot {
|
|
103
111
|
/**
|
|
112
|
+
* @public
|
|
104
113
|
* <p>The name of the namepsace.</p>
|
|
105
114
|
*/
|
|
106
115
|
namespaceName?: string;
|
|
107
116
|
/**
|
|
117
|
+
* @public
|
|
108
118
|
* <p>The Amazon Resource Name (ARN) of the namespace the snapshot was created from.</p>
|
|
109
119
|
*/
|
|
110
120
|
namespaceArn?: string;
|
|
111
121
|
/**
|
|
122
|
+
* @public
|
|
112
123
|
* <p>The name of the snapshot.</p>
|
|
113
124
|
*/
|
|
114
125
|
snapshotName?: string;
|
|
115
126
|
/**
|
|
127
|
+
* @public
|
|
116
128
|
* <p>The timestamp of when the snapshot was created.</p>
|
|
117
129
|
*/
|
|
118
130
|
snapshotCreateTime?: Date;
|
|
119
131
|
/**
|
|
132
|
+
* @public
|
|
120
133
|
* <p>The username of the database within a snapshot.</p>
|
|
121
134
|
*/
|
|
122
135
|
adminUsername?: string;
|
|
123
136
|
/**
|
|
137
|
+
* @public
|
|
124
138
|
* <p>The status of the snapshot.</p>
|
|
125
139
|
*/
|
|
126
140
|
status?: SnapshotStatus | string;
|
|
127
141
|
/**
|
|
142
|
+
* @public
|
|
128
143
|
* <p>The unique identifier of the KMS key used to encrypt the snapshot.</p>
|
|
129
144
|
*/
|
|
130
145
|
kmsKeyId?: string;
|
|
131
146
|
/**
|
|
147
|
+
* @public
|
|
132
148
|
* <p>The owner Amazon Web Services; account of the snapshot.</p>
|
|
133
149
|
*/
|
|
134
150
|
ownerAccount?: string;
|
|
135
151
|
/**
|
|
152
|
+
* @public
|
|
136
153
|
* <p>The total size, in megabytes, of how big the snapshot is.</p>
|
|
137
154
|
*/
|
|
138
155
|
totalBackupSizeInMegaBytes?: number;
|
|
139
156
|
/**
|
|
157
|
+
* @public
|
|
140
158
|
* <p>The size of the incremental backup in megabytes.</p>
|
|
141
159
|
*/
|
|
142
160
|
actualIncrementalBackupSizeInMegaBytes?: number;
|
|
143
161
|
/**
|
|
162
|
+
* @public
|
|
144
163
|
* <p>The size in megabytes of the data that has been backed up to a snapshot.</p>
|
|
145
164
|
*/
|
|
146
165
|
backupProgressInMegaBytes?: number;
|
|
147
166
|
/**
|
|
167
|
+
* @public
|
|
148
168
|
* <p>The rate at which data is backed up into a snapshot in megabytes per second.</p>
|
|
149
169
|
*/
|
|
150
170
|
currentBackupRateInMegaBytesPerSecond?: number;
|
|
151
171
|
/**
|
|
172
|
+
* @public
|
|
152
173
|
* <p>The estimated amount of seconds until the snapshot completes backup.</p>
|
|
153
174
|
*/
|
|
154
175
|
estimatedSecondsToCompletion?: number;
|
|
155
176
|
/**
|
|
177
|
+
* @public
|
|
156
178
|
* <p>The amount of time it took to back up data into a snapshot.</p>
|
|
157
179
|
*/
|
|
158
180
|
elapsedTimeInSeconds?: number;
|
|
159
181
|
/**
|
|
182
|
+
* @public
|
|
160
183
|
* <p>The period of time, in days, of how long the snapshot is retained.</p>
|
|
161
184
|
*/
|
|
162
185
|
snapshotRetentionPeriod?: number;
|
|
163
186
|
/**
|
|
187
|
+
* @public
|
|
164
188
|
* <p>The amount of days until the snapshot is deleted.</p>
|
|
165
189
|
*/
|
|
166
190
|
snapshotRemainingDays?: number;
|
|
167
191
|
/**
|
|
192
|
+
* @public
|
|
168
193
|
* <p>The timestamp of when data within the snapshot started getting retained.</p>
|
|
169
194
|
*/
|
|
170
195
|
snapshotRetentionStartTime?: Date;
|
|
171
196
|
/**
|
|
197
|
+
* @public
|
|
172
198
|
* <p>The Amazon Resource Name (ARN) of the snapshot.</p>
|
|
173
199
|
*/
|
|
174
200
|
snapshotArn?: string;
|
|
175
201
|
/**
|
|
202
|
+
* @public
|
|
176
203
|
* <p>All of the Amazon Web Services accounts that have access to
|
|
177
204
|
* restore a snapshot to a namespace.</p>
|
|
178
205
|
*/
|
|
179
206
|
accountsWithRestoreAccess?: string[];
|
|
180
207
|
/**
|
|
208
|
+
* @public
|
|
181
209
|
* <p>All of the Amazon Web Services accounts that have access to restore a snapshot to a provisioned cluster.</p>
|
|
182
210
|
*/
|
|
183
211
|
accountsWithProvisionedRestoreAccess?: string[];
|
|
@@ -187,6 +215,7 @@ export interface Snapshot {
|
|
|
187
215
|
*/
|
|
188
216
|
export interface ConvertRecoveryPointToSnapshotResponse {
|
|
189
217
|
/**
|
|
218
|
+
* @public
|
|
190
219
|
* <p>The snapshot converted from the recovery point.</p>
|
|
191
220
|
*/
|
|
192
221
|
snapshot?: Snapshot;
|
|
@@ -212,6 +241,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
212
241
|
readonly name: "ResourceNotFoundException";
|
|
213
242
|
readonly $fault: "client";
|
|
214
243
|
/**
|
|
244
|
+
* @public
|
|
215
245
|
* <p>The name of the resource that could not be found.</p>
|
|
216
246
|
*/
|
|
217
247
|
resourceName?: string;
|
|
@@ -240,6 +270,7 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
240
270
|
readonly name: "TooManyTagsException";
|
|
241
271
|
readonly $fault: "client";
|
|
242
272
|
/**
|
|
273
|
+
* @public
|
|
243
274
|
* <p>The name of the resource that exceeded the number of tags allowed for a resource.</p>
|
|
244
275
|
*/
|
|
245
276
|
resourceName?: string;
|
|
@@ -265,21 +296,25 @@ export declare class ValidationException extends __BaseException {
|
|
|
265
296
|
*/
|
|
266
297
|
export interface CreateEndpointAccessRequest {
|
|
267
298
|
/**
|
|
299
|
+
* @public
|
|
268
300
|
* <p>The name of the VPC endpoint. An endpoint name must contain 1-30 characters.
|
|
269
301
|
* Valid characters are A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter.
|
|
270
302
|
* The name can't contain two consecutive hyphens or end with a hyphen.</p>
|
|
271
303
|
*/
|
|
272
304
|
endpointName: string | undefined;
|
|
273
305
|
/**
|
|
306
|
+
* @public
|
|
274
307
|
* <p>The unique identifers of subnets from which
|
|
275
308
|
* Amazon Redshift Serverless chooses one to deploy a VPC endpoint.</p>
|
|
276
309
|
*/
|
|
277
310
|
subnetIds: string[] | undefined;
|
|
278
311
|
/**
|
|
312
|
+
* @public
|
|
279
313
|
* <p>The name of the workgroup to associate with the VPC endpoint.</p>
|
|
280
314
|
*/
|
|
281
315
|
workgroupName: string | undefined;
|
|
282
316
|
/**
|
|
317
|
+
* @public
|
|
283
318
|
* <p>The unique identifiers of the security group that defines the ports,
|
|
284
319
|
* protocols, and sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
285
320
|
*/
|
|
@@ -293,18 +328,22 @@ export interface CreateEndpointAccessRequest {
|
|
|
293
328
|
*/
|
|
294
329
|
export interface NetworkInterface {
|
|
295
330
|
/**
|
|
331
|
+
* @public
|
|
296
332
|
* <p>The unique identifier of the network interface.</p>
|
|
297
333
|
*/
|
|
298
334
|
networkInterfaceId?: string;
|
|
299
335
|
/**
|
|
336
|
+
* @public
|
|
300
337
|
* <p>The unique identifier of the subnet.</p>
|
|
301
338
|
*/
|
|
302
339
|
subnetId?: string;
|
|
303
340
|
/**
|
|
341
|
+
* @public
|
|
304
342
|
* <p>The IPv4 address of the network interface within the subnet.</p>
|
|
305
343
|
*/
|
|
306
344
|
privateIpAddress?: string;
|
|
307
345
|
/**
|
|
346
|
+
* @public
|
|
308
347
|
* <p>The availability Zone.</p>
|
|
309
348
|
*/
|
|
310
349
|
availabilityZone?: string;
|
|
@@ -315,14 +354,17 @@ export interface NetworkInterface {
|
|
|
315
354
|
*/
|
|
316
355
|
export interface VpcEndpoint {
|
|
317
356
|
/**
|
|
357
|
+
* @public
|
|
318
358
|
* <p>The connection endpoint ID for connecting to Amazon Redshift Serverless.</p>
|
|
319
359
|
*/
|
|
320
360
|
vpcEndpointId?: string;
|
|
321
361
|
/**
|
|
362
|
+
* @public
|
|
322
363
|
* <p>The VPC identifier that the endpoint is associated with.</p>
|
|
323
364
|
*/
|
|
324
365
|
vpcId?: string;
|
|
325
366
|
/**
|
|
367
|
+
* @public
|
|
326
368
|
* <p>One or more network interfaces of the endpoint. Also known as an interface endpoint.</p>
|
|
327
369
|
*/
|
|
328
370
|
networkInterfaces?: NetworkInterface[];
|
|
@@ -333,10 +375,12 @@ export interface VpcEndpoint {
|
|
|
333
375
|
*/
|
|
334
376
|
export interface VpcSecurityGroupMembership {
|
|
335
377
|
/**
|
|
378
|
+
* @public
|
|
336
379
|
* <p>The unique identifier of the VPC security group.</p>
|
|
337
380
|
*/
|
|
338
381
|
vpcSecurityGroupId?: string;
|
|
339
382
|
/**
|
|
383
|
+
* @public
|
|
340
384
|
* <p>The status of the VPC security group.</p>
|
|
341
385
|
*/
|
|
342
386
|
status?: string;
|
|
@@ -347,43 +391,53 @@ export interface VpcSecurityGroupMembership {
|
|
|
347
391
|
*/
|
|
348
392
|
export interface EndpointAccess {
|
|
349
393
|
/**
|
|
394
|
+
* @public
|
|
350
395
|
* <p>The name of the VPC endpoint.</p>
|
|
351
396
|
*/
|
|
352
397
|
endpointName?: string;
|
|
353
398
|
/**
|
|
399
|
+
* @public
|
|
354
400
|
* <p>The status of the VPC endpoint.</p>
|
|
355
401
|
*/
|
|
356
402
|
endpointStatus?: string;
|
|
357
403
|
/**
|
|
404
|
+
* @public
|
|
358
405
|
* <p>The name of the workgroup associated with the endpoint.</p>
|
|
359
406
|
*/
|
|
360
407
|
workgroupName?: string;
|
|
361
408
|
/**
|
|
409
|
+
* @public
|
|
362
410
|
* <p>The time that the endpoint was created.</p>
|
|
363
411
|
*/
|
|
364
412
|
endpointCreateTime?: Date;
|
|
365
413
|
/**
|
|
414
|
+
* @public
|
|
366
415
|
* <p>The port number on which Amazon Redshift Serverless accepts incoming connections.</p>
|
|
367
416
|
*/
|
|
368
417
|
port?: number;
|
|
369
418
|
/**
|
|
419
|
+
* @public
|
|
370
420
|
* <p>The DNS address of the endpoint.</p>
|
|
371
421
|
*/
|
|
372
422
|
address?: string;
|
|
373
423
|
/**
|
|
424
|
+
* @public
|
|
374
425
|
* <p>The unique identifier of subnets
|
|
375
426
|
* where Amazon Redshift Serverless choose to deploy the VPC endpoint.</p>
|
|
376
427
|
*/
|
|
377
428
|
subnetIds?: string[];
|
|
378
429
|
/**
|
|
430
|
+
* @public
|
|
379
431
|
* <p>The security groups associated with the endpoint.</p>
|
|
380
432
|
*/
|
|
381
433
|
vpcSecurityGroups?: VpcSecurityGroupMembership[];
|
|
382
434
|
/**
|
|
435
|
+
* @public
|
|
383
436
|
* <p>The connection endpoint for connecting to Amazon Redshift Serverless.</p>
|
|
384
437
|
*/
|
|
385
438
|
vpcEndpoint?: VpcEndpoint;
|
|
386
439
|
/**
|
|
440
|
+
* @public
|
|
387
441
|
* <p>The Amazon Resource Name (ARN) of the VPC endpoint.</p>
|
|
388
442
|
*/
|
|
389
443
|
endpointArn?: string;
|
|
@@ -393,6 +447,7 @@ export interface EndpointAccess {
|
|
|
393
447
|
*/
|
|
394
448
|
export interface CreateEndpointAccessResponse {
|
|
395
449
|
/**
|
|
450
|
+
* @public
|
|
396
451
|
* <p>The created VPC endpoint.</p>
|
|
397
452
|
*/
|
|
398
453
|
endpoint?: EndpointAccess;
|
|
@@ -415,39 +470,48 @@ export type LogExport = (typeof LogExport)[keyof typeof LogExport];
|
|
|
415
470
|
*/
|
|
416
471
|
export interface CreateNamespaceRequest {
|
|
417
472
|
/**
|
|
473
|
+
* @public
|
|
418
474
|
* <p>The name of the namespace.</p>
|
|
419
475
|
*/
|
|
420
476
|
namespaceName: string | undefined;
|
|
421
477
|
/**
|
|
478
|
+
* @public
|
|
422
479
|
* <p>The username of the administrator for the first database created in the namespace.</p>
|
|
423
480
|
*/
|
|
424
481
|
adminUsername?: string;
|
|
425
482
|
/**
|
|
483
|
+
* @public
|
|
426
484
|
* <p>The password of the administrator for the first database created in the namespace.</p>
|
|
427
485
|
*/
|
|
428
486
|
adminUserPassword?: string;
|
|
429
487
|
/**
|
|
488
|
+
* @public
|
|
430
489
|
* <p>The name of the first database created in the namespace.</p>
|
|
431
490
|
*/
|
|
432
491
|
dbName?: string;
|
|
433
492
|
/**
|
|
493
|
+
* @public
|
|
434
494
|
* <p>The ID of the Amazon Web Services Key Management Service key used to encrypt your data.</p>
|
|
435
495
|
*/
|
|
436
496
|
kmsKeyId?: string;
|
|
437
497
|
/**
|
|
498
|
+
* @public
|
|
438
499
|
* <p>The Amazon Resource Name (ARN) of the IAM role to set as a default in the namespace.</p>
|
|
439
500
|
*/
|
|
440
501
|
defaultIamRoleArn?: string;
|
|
441
502
|
/**
|
|
503
|
+
* @public
|
|
442
504
|
* <p>A list of IAM roles to associate with the namespace.</p>
|
|
443
505
|
*/
|
|
444
506
|
iamRoles?: string[];
|
|
445
507
|
/**
|
|
508
|
+
* @public
|
|
446
509
|
* <p>The types of logs the namespace can export.
|
|
447
510
|
* Available export types are <code>userlog</code>, <code>connectionlog</code>, and <code>useractivitylog</code>.</p>
|
|
448
511
|
*/
|
|
449
512
|
logExports?: (LogExport | string)[];
|
|
450
513
|
/**
|
|
514
|
+
* @public
|
|
451
515
|
* <p>A list of tag instances.</p>
|
|
452
516
|
*/
|
|
453
517
|
tags?: Tag[];
|
|
@@ -471,14 +535,17 @@ export type NamespaceStatus = (typeof NamespaceStatus)[keyof typeof NamespaceSta
|
|
|
471
535
|
*/
|
|
472
536
|
export interface Namespace {
|
|
473
537
|
/**
|
|
538
|
+
* @public
|
|
474
539
|
* <p>The Amazon Resource Name (ARN) associated with a namespace.</p>
|
|
475
540
|
*/
|
|
476
541
|
namespaceArn?: string;
|
|
477
542
|
/**
|
|
543
|
+
* @public
|
|
478
544
|
* <p>The unique identifier of a namespace.</p>
|
|
479
545
|
*/
|
|
480
546
|
namespaceId?: string;
|
|
481
547
|
/**
|
|
548
|
+
* @public
|
|
482
549
|
* <p>The name of the namespace.
|
|
483
550
|
* Must be between 3-64 alphanumeric characters in lowercase,
|
|
484
551
|
* and it cannot be a reserved word. A list of reserved words can be found
|
|
@@ -486,34 +553,42 @@ export interface Namespace {
|
|
|
486
553
|
*/
|
|
487
554
|
namespaceName?: string;
|
|
488
555
|
/**
|
|
556
|
+
* @public
|
|
489
557
|
* <p>The username of the administrator for the first database created in the namespace.</p>
|
|
490
558
|
*/
|
|
491
559
|
adminUsername?: string;
|
|
492
560
|
/**
|
|
561
|
+
* @public
|
|
493
562
|
* <p>The name of the first database created in the namespace.</p>
|
|
494
563
|
*/
|
|
495
564
|
dbName?: string;
|
|
496
565
|
/**
|
|
566
|
+
* @public
|
|
497
567
|
* <p>The ID of the Amazon Web Services Key Management Service key used to encrypt your data.</p>
|
|
498
568
|
*/
|
|
499
569
|
kmsKeyId?: string;
|
|
500
570
|
/**
|
|
571
|
+
* @public
|
|
501
572
|
* <p>The Amazon Resource Name (ARN) of the IAM role to set as a default in the namespace.</p>
|
|
502
573
|
*/
|
|
503
574
|
defaultIamRoleArn?: string;
|
|
504
575
|
/**
|
|
576
|
+
* @public
|
|
505
577
|
* <p>A list of IAM roles to associate with the namespace.</p>
|
|
506
578
|
*/
|
|
507
579
|
iamRoles?: string[];
|
|
508
580
|
/**
|
|
581
|
+
* @public
|
|
509
582
|
* <p>The types of logs the namespace can export. Available export types are User log, Connection log, and User activity log.</p>
|
|
510
583
|
*/
|
|
511
584
|
logExports?: (LogExport | string)[];
|
|
512
585
|
/**
|
|
586
|
+
* @public
|
|
513
587
|
* <p>The status of the namespace.</p>
|
|
514
588
|
*/
|
|
515
589
|
status?: NamespaceStatus | string;
|
|
516
590
|
/**
|
|
591
|
+
* @public
|
|
517
592
|
* <p>The date of when the namespace was created.</p>
|
|
518
593
|
*/
|
|
519
594
|
creationDate?: Date;
|
|
@@ -523,6 +598,7 @@ export interface Namespace {
|
|
|
523
598
|
*/
|
|
524
599
|
export interface CreateNamespaceResponse {
|
|
525
600
|
/**
|
|
601
|
+
* @public
|
|
526
602
|
* <p>The created namespace object.</p>
|
|
527
603
|
*/
|
|
528
604
|
namespace?: Namespace;
|
|
@@ -532,18 +608,22 @@ export interface CreateNamespaceResponse {
|
|
|
532
608
|
*/
|
|
533
609
|
export interface CreateSnapshotRequest {
|
|
534
610
|
/**
|
|
611
|
+
* @public
|
|
535
612
|
* <p>The namespace to create a snapshot for.</p>
|
|
536
613
|
*/
|
|
537
614
|
namespaceName: string | undefined;
|
|
538
615
|
/**
|
|
616
|
+
* @public
|
|
539
617
|
* <p>The name of the snapshot.</p>
|
|
540
618
|
*/
|
|
541
619
|
snapshotName: string | undefined;
|
|
542
620
|
/**
|
|
621
|
+
* @public
|
|
543
622
|
* <p>How long to retain the created snapshot.</p>
|
|
544
623
|
*/
|
|
545
624
|
retentionPeriod?: number;
|
|
546
625
|
/**
|
|
626
|
+
* @public
|
|
547
627
|
* <p>An array of <a href="https://docs.aws.amazon.com/redshift-serverless/latest/APIReference/API_Tag.html">Tag objects</a> to associate with the snapshot.</p>
|
|
548
628
|
*/
|
|
549
629
|
tags?: Tag[];
|
|
@@ -553,6 +633,7 @@ export interface CreateSnapshotRequest {
|
|
|
553
633
|
*/
|
|
554
634
|
export interface CreateSnapshotResponse {
|
|
555
635
|
/**
|
|
636
|
+
* @public
|
|
556
637
|
* <p>The created snapshot object.</p>
|
|
557
638
|
*/
|
|
558
639
|
snapshot?: Snapshot;
|
|
@@ -600,23 +681,28 @@ export type UsageLimitUsageType = (typeof UsageLimitUsageType)[keyof typeof Usag
|
|
|
600
681
|
*/
|
|
601
682
|
export interface CreateUsageLimitRequest {
|
|
602
683
|
/**
|
|
684
|
+
* @public
|
|
603
685
|
* <p>The Amazon Resource Name (ARN) of the Amazon Redshift Serverless resource to create the usage limit for.</p>
|
|
604
686
|
*/
|
|
605
687
|
resourceArn: string | undefined;
|
|
606
688
|
/**
|
|
689
|
+
* @public
|
|
607
690
|
* <p>The type of Amazon Redshift Serverless usage to create a usage limit for.</p>
|
|
608
691
|
*/
|
|
609
692
|
usageType: UsageLimitUsageType | string | undefined;
|
|
610
693
|
/**
|
|
694
|
+
* @public
|
|
611
695
|
* <p>The limit amount. If time-based, this amount is in Redshift Processing Units (RPU) consumed per hour. If data-based, this amount is in terabytes (TB) of data
|
|
612
696
|
* transferred between Regions in cross-account sharing. The value must be a positive number.</p>
|
|
613
697
|
*/
|
|
614
698
|
amount: number | undefined;
|
|
615
699
|
/**
|
|
700
|
+
* @public
|
|
616
701
|
* <p>The time period that the amount applies to. A weekly period begins on Sunday. The default is monthly.</p>
|
|
617
702
|
*/
|
|
618
703
|
period?: UsageLimitPeriod | string;
|
|
619
704
|
/**
|
|
705
|
+
* @public
|
|
620
706
|
* <p>The action that Amazon Redshift Serverless takes when the limit is reached. The default is log.</p>
|
|
621
707
|
*/
|
|
622
708
|
breachAction?: UsageLimitBreachAction | string;
|
|
@@ -627,30 +713,37 @@ export interface CreateUsageLimitRequest {
|
|
|
627
713
|
*/
|
|
628
714
|
export interface UsageLimit {
|
|
629
715
|
/**
|
|
716
|
+
* @public
|
|
630
717
|
* <p>The identifier of the usage limit.</p>
|
|
631
718
|
*/
|
|
632
719
|
usageLimitId?: string;
|
|
633
720
|
/**
|
|
721
|
+
* @public
|
|
634
722
|
* <p>The Amazon Resource Name (ARN) of the resource associated with the usage limit.</p>
|
|
635
723
|
*/
|
|
636
724
|
usageLimitArn?: string;
|
|
637
725
|
/**
|
|
726
|
+
* @public
|
|
638
727
|
* <p>The Amazon Resource Name (ARN) that identifies the Amazon Redshift Serverless resource.</p>
|
|
639
728
|
*/
|
|
640
729
|
resourceArn?: string;
|
|
641
730
|
/**
|
|
731
|
+
* @public
|
|
642
732
|
* <p>The Amazon Redshift Serverless feature to limit.</p>
|
|
643
733
|
*/
|
|
644
734
|
usageType?: UsageLimitUsageType | string;
|
|
645
735
|
/**
|
|
736
|
+
* @public
|
|
646
737
|
* <p>The limit amount. If time-based, this amount is in RPUs consumed per hour. If data-based, this amount is in terabytes (TB). The value must be a positive number.</p>
|
|
647
738
|
*/
|
|
648
739
|
amount?: number;
|
|
649
740
|
/**
|
|
741
|
+
* @public
|
|
650
742
|
* <p>The time period that the amount applies to. A weekly period begins on Sunday. The default is monthly.</p>
|
|
651
743
|
*/
|
|
652
744
|
period?: UsageLimitPeriod | string;
|
|
653
745
|
/**
|
|
746
|
+
* @public
|
|
654
747
|
* <p>The action that Amazon Redshift Serverless takes when the limit is reached.</p>
|
|
655
748
|
*/
|
|
656
749
|
breachAction?: UsageLimitBreachAction | string;
|
|
@@ -660,6 +753,7 @@ export interface UsageLimit {
|
|
|
660
753
|
*/
|
|
661
754
|
export interface CreateUsageLimitResponse {
|
|
662
755
|
/**
|
|
756
|
+
* @public
|
|
663
757
|
* <p>The returned usage limit object.</p>
|
|
664
758
|
*/
|
|
665
759
|
usageLimit?: UsageLimit;
|
|
@@ -669,23 +763,28 @@ export interface CreateUsageLimitResponse {
|
|
|
669
763
|
*/
|
|
670
764
|
export interface CreateWorkgroupRequest {
|
|
671
765
|
/**
|
|
766
|
+
* @public
|
|
672
767
|
* <p>The name of the created workgroup.</p>
|
|
673
768
|
*/
|
|
674
769
|
workgroupName: string | undefined;
|
|
675
770
|
/**
|
|
771
|
+
* @public
|
|
676
772
|
* <p>The name of the namespace to associate with the workgroup.</p>
|
|
677
773
|
*/
|
|
678
774
|
namespaceName: string | undefined;
|
|
679
775
|
/**
|
|
776
|
+
* @public
|
|
680
777
|
* <p>The base data warehouse capacity of the workgroup in Redshift Processing Units (RPUs).</p>
|
|
681
778
|
*/
|
|
682
779
|
baseCapacity?: number;
|
|
683
780
|
/**
|
|
781
|
+
* @public
|
|
684
782
|
* <p>The value that specifies whether to turn on enhanced virtual
|
|
685
783
|
* private cloud (VPC) routing, which forces Amazon Redshift Serverless to route traffic through your VPC instead of over the internet.</p>
|
|
686
784
|
*/
|
|
687
785
|
enhancedVpcRouting?: boolean;
|
|
688
786
|
/**
|
|
787
|
+
* @public
|
|
689
788
|
* <p>An array of parameters to set for advanced control over a database. The
|
|
690
789
|
* options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitivity_identifier</code>, <code>enable_user_activity_logging</code>,
|
|
691
790
|
* <code>query_group</code>, <code>search_path</code>, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see
|
|
@@ -694,22 +793,27 @@ export interface CreateWorkgroupRequest {
|
|
|
694
793
|
*/
|
|
695
794
|
configParameters?: ConfigParameter[];
|
|
696
795
|
/**
|
|
796
|
+
* @public
|
|
697
797
|
* <p>An array of security group IDs to associate with the workgroup.</p>
|
|
698
798
|
*/
|
|
699
799
|
securityGroupIds?: string[];
|
|
700
800
|
/**
|
|
801
|
+
* @public
|
|
701
802
|
* <p>An array of VPC subnet IDs to associate with the workgroup.</p>
|
|
702
803
|
*/
|
|
703
804
|
subnetIds?: string[];
|
|
704
805
|
/**
|
|
806
|
+
* @public
|
|
705
807
|
* <p>A value that specifies whether the workgroup can be accessed from a public network.</p>
|
|
706
808
|
*/
|
|
707
809
|
publiclyAccessible?: boolean;
|
|
708
810
|
/**
|
|
811
|
+
* @public
|
|
709
812
|
* <p>A array of tag instances.</p>
|
|
710
813
|
*/
|
|
711
814
|
tags?: Tag[];
|
|
712
815
|
/**
|
|
816
|
+
* @public
|
|
713
817
|
* <p>The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.</p>
|
|
714
818
|
*/
|
|
715
819
|
port?: number;
|
|
@@ -720,14 +824,17 @@ export interface CreateWorkgroupRequest {
|
|
|
720
824
|
*/
|
|
721
825
|
export interface Endpoint {
|
|
722
826
|
/**
|
|
827
|
+
* @public
|
|
723
828
|
* <p>The DNS address of the VPC endpoint.</p>
|
|
724
829
|
*/
|
|
725
830
|
address?: string;
|
|
726
831
|
/**
|
|
832
|
+
* @public
|
|
727
833
|
* <p>The port that Amazon Redshift Serverless listens on.</p>
|
|
728
834
|
*/
|
|
729
835
|
port?: number;
|
|
730
836
|
/**
|
|
837
|
+
* @public
|
|
731
838
|
* <p>An array of <code>VpcEndpoint</code> objects.</p>
|
|
732
839
|
*/
|
|
733
840
|
vpcEndpoints?: VpcEndpoint[];
|
|
@@ -752,31 +859,38 @@ export type WorkgroupStatus = (typeof WorkgroupStatus)[keyof typeof WorkgroupSta
|
|
|
752
859
|
*/
|
|
753
860
|
export interface Workgroup {
|
|
754
861
|
/**
|
|
862
|
+
* @public
|
|
755
863
|
* <p>The unique identifier of the workgroup.</p>
|
|
756
864
|
*/
|
|
757
865
|
workgroupId?: string;
|
|
758
866
|
/**
|
|
867
|
+
* @public
|
|
759
868
|
* <p>The Amazon Resource Name (ARN) that links to the workgroup.</p>
|
|
760
869
|
*/
|
|
761
870
|
workgroupArn?: string;
|
|
762
871
|
/**
|
|
872
|
+
* @public
|
|
763
873
|
* <p>The name of the workgroup.</p>
|
|
764
874
|
*/
|
|
765
875
|
workgroupName?: string;
|
|
766
876
|
/**
|
|
877
|
+
* @public
|
|
767
878
|
* <p>The namespace the workgroup is associated with.</p>
|
|
768
879
|
*/
|
|
769
880
|
namespaceName?: string;
|
|
770
881
|
/**
|
|
882
|
+
* @public
|
|
771
883
|
* <p>The base data warehouse capacity of the workgroup in Redshift Processing Units (RPUs).</p>
|
|
772
884
|
*/
|
|
773
885
|
baseCapacity?: number;
|
|
774
886
|
/**
|
|
887
|
+
* @public
|
|
775
888
|
* <p>The value that specifies whether to enable enhanced virtual
|
|
776
889
|
* private cloud (VPC) routing, which forces Amazon Redshift Serverless to route traffic through your VPC.</p>
|
|
777
890
|
*/
|
|
778
891
|
enhancedVpcRouting?: boolean;
|
|
779
892
|
/**
|
|
893
|
+
* @public
|
|
780
894
|
* <p>An array of parameters to set for advanced control over a database. The
|
|
781
895
|
* options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitivity_identifier</code>, <code>enable_user_activity_logging</code>,
|
|
782
896
|
* <code>query_group</code>, , <code>search_path</code>, and query monitoring metrics that let you define performance boundaries.
|
|
@@ -784,31 +898,38 @@ export interface Workgroup {
|
|
|
784
898
|
*/
|
|
785
899
|
configParameters?: ConfigParameter[];
|
|
786
900
|
/**
|
|
901
|
+
* @public
|
|
787
902
|
* <p>An array of security group IDs to associate with the workgroup.</p>
|
|
788
903
|
*/
|
|
789
904
|
securityGroupIds?: string[];
|
|
790
905
|
/**
|
|
906
|
+
* @public
|
|
791
907
|
* <p>An array of subnet IDs the workgroup is associated with.</p>
|
|
792
908
|
*/
|
|
793
909
|
subnetIds?: string[];
|
|
794
910
|
/**
|
|
911
|
+
* @public
|
|
795
912
|
* <p>The status of the workgroup.</p>
|
|
796
913
|
*/
|
|
797
914
|
status?: WorkgroupStatus | string;
|
|
798
915
|
/**
|
|
916
|
+
* @public
|
|
799
917
|
* <p>The endpoint that is created from the workgroup.</p>
|
|
800
918
|
*/
|
|
801
919
|
endpoint?: Endpoint;
|
|
802
920
|
/**
|
|
921
|
+
* @public
|
|
803
922
|
* <p>A value that specifies whether the workgroup
|
|
804
923
|
* can be accessible from a public network</p>
|
|
805
924
|
*/
|
|
806
925
|
publiclyAccessible?: boolean;
|
|
807
926
|
/**
|
|
927
|
+
* @public
|
|
808
928
|
* <p>The creation date of the workgroup.</p>
|
|
809
929
|
*/
|
|
810
930
|
creationDate?: Date;
|
|
811
931
|
/**
|
|
932
|
+
* @public
|
|
812
933
|
* <p>The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.</p>
|
|
813
934
|
*/
|
|
814
935
|
port?: number;
|
|
@@ -818,6 +939,7 @@ export interface Workgroup {
|
|
|
818
939
|
*/
|
|
819
940
|
export interface CreateWorkgroupResponse {
|
|
820
941
|
/**
|
|
942
|
+
* @public
|
|
821
943
|
* <p>The created workgroup object.</p>
|
|
822
944
|
*/
|
|
823
945
|
workgroup?: Workgroup;
|
|
@@ -840,6 +962,7 @@ export declare class InsufficientCapacityException extends __BaseException {
|
|
|
840
962
|
*/
|
|
841
963
|
export interface DeleteEndpointAccessRequest {
|
|
842
964
|
/**
|
|
965
|
+
* @public
|
|
843
966
|
* <p>The name of the VPC endpoint to delete.</p>
|
|
844
967
|
*/
|
|
845
968
|
endpointName: string | undefined;
|
|
@@ -849,6 +972,7 @@ export interface DeleteEndpointAccessRequest {
|
|
|
849
972
|
*/
|
|
850
973
|
export interface DeleteEndpointAccessResponse {
|
|
851
974
|
/**
|
|
975
|
+
* @public
|
|
852
976
|
* <p>The deleted VPC endpoint.</p>
|
|
853
977
|
*/
|
|
854
978
|
endpoint?: EndpointAccess;
|
|
@@ -858,6 +982,7 @@ export interface DeleteEndpointAccessResponse {
|
|
|
858
982
|
*/
|
|
859
983
|
export interface GetEndpointAccessRequest {
|
|
860
984
|
/**
|
|
985
|
+
* @public
|
|
861
986
|
* <p>The name of the VPC endpoint to return information for.</p>
|
|
862
987
|
*/
|
|
863
988
|
endpointName: string | undefined;
|
|
@@ -867,6 +992,7 @@ export interface GetEndpointAccessRequest {
|
|
|
867
992
|
*/
|
|
868
993
|
export interface GetEndpointAccessResponse {
|
|
869
994
|
/**
|
|
995
|
+
* @public
|
|
870
996
|
* <p>The returned VPC endpoint.</p>
|
|
871
997
|
*/
|
|
872
998
|
endpoint?: EndpointAccess;
|
|
@@ -876,21 +1002,25 @@ export interface GetEndpointAccessResponse {
|
|
|
876
1002
|
*/
|
|
877
1003
|
export interface ListEndpointAccessRequest {
|
|
878
1004
|
/**
|
|
1005
|
+
* @public
|
|
879
1006
|
* <p>If your initial <code>ListEndpointAccess</code> operation returns a <code>nextToken</code>,
|
|
880
1007
|
* you can include the returned <code>nextToken</code> in following <code>ListEndpointAccess</code> operations,
|
|
881
1008
|
* which returns results in the next page.</p>
|
|
882
1009
|
*/
|
|
883
1010
|
nextToken?: string;
|
|
884
1011
|
/**
|
|
1012
|
+
* @public
|
|
885
1013
|
* <p>An optional parameter that specifies the maximum number of results to return.
|
|
886
1014
|
* You can use <code>nextToken</code> to display the next page of results.</p>
|
|
887
1015
|
*/
|
|
888
1016
|
maxResults?: number;
|
|
889
1017
|
/**
|
|
1018
|
+
* @public
|
|
890
1019
|
* <p>The name of the workgroup associated with the VPC endpoint to return.</p>
|
|
891
1020
|
*/
|
|
892
1021
|
workgroupName?: string;
|
|
893
1022
|
/**
|
|
1023
|
+
* @public
|
|
894
1024
|
* <p>The unique identifier of the virtual private cloud with access to Amazon Redshift Serverless.</p>
|
|
895
1025
|
*/
|
|
896
1026
|
vpcId?: string;
|
|
@@ -900,12 +1030,14 @@ export interface ListEndpointAccessRequest {
|
|
|
900
1030
|
*/
|
|
901
1031
|
export interface ListEndpointAccessResponse {
|
|
902
1032
|
/**
|
|
1033
|
+
* @public
|
|
903
1034
|
* <p>When <code>nextToken</code> is returned, there are more results available.
|
|
904
1035
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
905
1036
|
* Make the call again using the returned token to retrieve the next page.</p>
|
|
906
1037
|
*/
|
|
907
1038
|
nextToken?: string;
|
|
908
1039
|
/**
|
|
1040
|
+
* @public
|
|
909
1041
|
* <p>The returned VPC endpoints.</p>
|
|
910
1042
|
*/
|
|
911
1043
|
endpoints: EndpointAccess[] | undefined;
|
|
@@ -915,10 +1047,12 @@ export interface ListEndpointAccessResponse {
|
|
|
915
1047
|
*/
|
|
916
1048
|
export interface UpdateEndpointAccessRequest {
|
|
917
1049
|
/**
|
|
1050
|
+
* @public
|
|
918
1051
|
* <p>The name of the VPC endpoint to update.</p>
|
|
919
1052
|
*/
|
|
920
1053
|
endpointName: string | undefined;
|
|
921
1054
|
/**
|
|
1055
|
+
* @public
|
|
922
1056
|
* <p>The list of VPC security groups associated with the endpoint after the endpoint is modified.</p>
|
|
923
1057
|
*/
|
|
924
1058
|
vpcSecurityGroupIds?: string[];
|
|
@@ -928,6 +1062,7 @@ export interface UpdateEndpointAccessRequest {
|
|
|
928
1062
|
*/
|
|
929
1063
|
export interface UpdateEndpointAccessResponse {
|
|
930
1064
|
/**
|
|
1065
|
+
* @public
|
|
931
1066
|
* <p>The updated VPC endpoint.</p>
|
|
932
1067
|
*/
|
|
933
1068
|
endpoint?: EndpointAccess;
|
|
@@ -937,14 +1072,17 @@ export interface UpdateEndpointAccessResponse {
|
|
|
937
1072
|
*/
|
|
938
1073
|
export interface DeleteNamespaceRequest {
|
|
939
1074
|
/**
|
|
1075
|
+
* @public
|
|
940
1076
|
* <p>The name of the namespace to delete.</p>
|
|
941
1077
|
*/
|
|
942
1078
|
namespaceName: string | undefined;
|
|
943
1079
|
/**
|
|
1080
|
+
* @public
|
|
944
1081
|
* <p>The name of the snapshot to be created before the namespace is deleted.</p>
|
|
945
1082
|
*/
|
|
946
1083
|
finalSnapshotName?: string;
|
|
947
1084
|
/**
|
|
1085
|
+
* @public
|
|
948
1086
|
* <p>How long to retain the final snapshot.</p>
|
|
949
1087
|
*/
|
|
950
1088
|
finalSnapshotRetentionPeriod?: number;
|
|
@@ -954,6 +1092,7 @@ export interface DeleteNamespaceRequest {
|
|
|
954
1092
|
*/
|
|
955
1093
|
export interface DeleteNamespaceResponse {
|
|
956
1094
|
/**
|
|
1095
|
+
* @public
|
|
957
1096
|
* <p>The deleted namespace object.</p>
|
|
958
1097
|
*/
|
|
959
1098
|
namespace: Namespace | undefined;
|
|
@@ -963,6 +1102,7 @@ export interface DeleteNamespaceResponse {
|
|
|
963
1102
|
*/
|
|
964
1103
|
export interface DeleteResourcePolicyRequest {
|
|
965
1104
|
/**
|
|
1105
|
+
* @public
|
|
966
1106
|
* <p>The Amazon Resource Name (ARN) of the policy to delete.</p>
|
|
967
1107
|
*/
|
|
968
1108
|
resourceArn: string | undefined;
|
|
@@ -977,6 +1117,7 @@ export interface DeleteResourcePolicyResponse {
|
|
|
977
1117
|
*/
|
|
978
1118
|
export interface DeleteSnapshotRequest {
|
|
979
1119
|
/**
|
|
1120
|
+
* @public
|
|
980
1121
|
* <p>The name of the snapshot to be deleted.</p>
|
|
981
1122
|
*/
|
|
982
1123
|
snapshotName: string | undefined;
|
|
@@ -986,6 +1127,7 @@ export interface DeleteSnapshotRequest {
|
|
|
986
1127
|
*/
|
|
987
1128
|
export interface DeleteSnapshotResponse {
|
|
988
1129
|
/**
|
|
1130
|
+
* @public
|
|
989
1131
|
* <p>The deleted snapshot object.</p>
|
|
990
1132
|
*/
|
|
991
1133
|
snapshot?: Snapshot;
|
|
@@ -995,6 +1137,7 @@ export interface DeleteSnapshotResponse {
|
|
|
995
1137
|
*/
|
|
996
1138
|
export interface DeleteUsageLimitRequest {
|
|
997
1139
|
/**
|
|
1140
|
+
* @public
|
|
998
1141
|
* <p>The unique identifier of the usage limit to delete.</p>
|
|
999
1142
|
*/
|
|
1000
1143
|
usageLimitId: string | undefined;
|
|
@@ -1004,6 +1147,7 @@ export interface DeleteUsageLimitRequest {
|
|
|
1004
1147
|
*/
|
|
1005
1148
|
export interface DeleteUsageLimitResponse {
|
|
1006
1149
|
/**
|
|
1150
|
+
* @public
|
|
1007
1151
|
* <p>The deleted usage limit object.</p>
|
|
1008
1152
|
*/
|
|
1009
1153
|
usageLimit?: UsageLimit;
|
|
@@ -1013,6 +1157,7 @@ export interface DeleteUsageLimitResponse {
|
|
|
1013
1157
|
*/
|
|
1014
1158
|
export interface DeleteWorkgroupRequest {
|
|
1015
1159
|
/**
|
|
1160
|
+
* @public
|
|
1016
1161
|
* <p>The name of the workgroup to be deleted.</p>
|
|
1017
1162
|
*/
|
|
1018
1163
|
workgroupName: string | undefined;
|
|
@@ -1022,6 +1167,7 @@ export interface DeleteWorkgroupRequest {
|
|
|
1022
1167
|
*/
|
|
1023
1168
|
export interface DeleteWorkgroupResponse {
|
|
1024
1169
|
/**
|
|
1170
|
+
* @public
|
|
1025
1171
|
* <p>The deleted workgroup object.</p>
|
|
1026
1172
|
*/
|
|
1027
1173
|
workgroup: Workgroup | undefined;
|
|
@@ -1031,10 +1177,12 @@ export interface DeleteWorkgroupResponse {
|
|
|
1031
1177
|
*/
|
|
1032
1178
|
export interface GetCredentialsRequest {
|
|
1033
1179
|
/**
|
|
1180
|
+
* @public
|
|
1034
1181
|
* <p>The name of the workgroup associated with the database.</p>
|
|
1035
1182
|
*/
|
|
1036
1183
|
workgroupName: string | undefined;
|
|
1037
1184
|
/**
|
|
1185
|
+
* @public
|
|
1038
1186
|
* <p>The name of the database to get temporary authorization to log on to.</p>
|
|
1039
1187
|
* <p>Constraints:</p>
|
|
1040
1188
|
* <ul>
|
|
@@ -1059,6 +1207,7 @@ export interface GetCredentialsRequest {
|
|
|
1059
1207
|
*/
|
|
1060
1208
|
dbName?: string;
|
|
1061
1209
|
/**
|
|
1210
|
+
* @public
|
|
1062
1211
|
* <p>The number of seconds until the returned temporary password expires.
|
|
1063
1212
|
* The minimum is 900 seconds, and the maximum is 3600 seconds.</p>
|
|
1064
1213
|
*/
|
|
@@ -1069,6 +1218,7 @@ export interface GetCredentialsRequest {
|
|
|
1069
1218
|
*/
|
|
1070
1219
|
export interface GetCredentialsResponse {
|
|
1071
1220
|
/**
|
|
1221
|
+
* @public
|
|
1072
1222
|
* <p>A database user name that is authorized to log on to the database <code>DbName</code>
|
|
1073
1223
|
* using the password <code>DbPassword</code>. If the specified <code>DbUser</code> exists in the database,
|
|
1074
1224
|
* the new user name has the same database privileges as the the user named in
|
|
@@ -1076,15 +1226,18 @@ export interface GetCredentialsResponse {
|
|
|
1076
1226
|
*/
|
|
1077
1227
|
dbUser?: string;
|
|
1078
1228
|
/**
|
|
1229
|
+
* @public
|
|
1079
1230
|
* <p>A temporary password that authorizes the user name returned by
|
|
1080
1231
|
* <code>DbUser</code> to log on to the database <code>DbName</code>.</p>
|
|
1081
1232
|
*/
|
|
1082
1233
|
dbPassword?: string;
|
|
1083
1234
|
/**
|
|
1235
|
+
* @public
|
|
1084
1236
|
* <p>The date and time the password in <code>DbPassword</code> expires.</p>
|
|
1085
1237
|
*/
|
|
1086
1238
|
expiration?: Date;
|
|
1087
1239
|
/**
|
|
1240
|
+
* @public
|
|
1088
1241
|
* <p>The date and time of when the <code>DbUser</code> and <code>DbPassword</code>
|
|
1089
1242
|
* authorization refreshes.</p>
|
|
1090
1243
|
*/
|
|
@@ -1095,6 +1248,7 @@ export interface GetCredentialsResponse {
|
|
|
1095
1248
|
*/
|
|
1096
1249
|
export interface GetNamespaceRequest {
|
|
1097
1250
|
/**
|
|
1251
|
+
* @public
|
|
1098
1252
|
* <p>The name of the namespace to retrieve information for.</p>
|
|
1099
1253
|
*/
|
|
1100
1254
|
namespaceName: string | undefined;
|
|
@@ -1104,6 +1258,7 @@ export interface GetNamespaceRequest {
|
|
|
1104
1258
|
*/
|
|
1105
1259
|
export interface GetNamespaceResponse {
|
|
1106
1260
|
/**
|
|
1261
|
+
* @public
|
|
1107
1262
|
* <p>The returned namespace object.</p>
|
|
1108
1263
|
*/
|
|
1109
1264
|
namespace: Namespace | undefined;
|
|
@@ -1113,6 +1268,7 @@ export interface GetNamespaceResponse {
|
|
|
1113
1268
|
*/
|
|
1114
1269
|
export interface GetRecoveryPointRequest {
|
|
1115
1270
|
/**
|
|
1271
|
+
* @public
|
|
1116
1272
|
* <p>The unique identifier of the recovery point to return information for.</p>
|
|
1117
1273
|
*/
|
|
1118
1274
|
recoveryPointId: string | undefined;
|
|
@@ -1124,26 +1280,32 @@ export interface GetRecoveryPointRequest {
|
|
|
1124
1280
|
*/
|
|
1125
1281
|
export interface RecoveryPoint {
|
|
1126
1282
|
/**
|
|
1283
|
+
* @public
|
|
1127
1284
|
* <p>The unique identifier of the recovery point.</p>
|
|
1128
1285
|
*/
|
|
1129
1286
|
recoveryPointId?: string;
|
|
1130
1287
|
/**
|
|
1288
|
+
* @public
|
|
1131
1289
|
* <p>The time the recovery point is created.</p>
|
|
1132
1290
|
*/
|
|
1133
1291
|
recoveryPointCreateTime?: Date;
|
|
1134
1292
|
/**
|
|
1293
|
+
* @public
|
|
1135
1294
|
* <p>The total size of the data in the recovery point in megabytes.</p>
|
|
1136
1295
|
*/
|
|
1137
1296
|
totalSizeInMegaBytes?: number;
|
|
1138
1297
|
/**
|
|
1298
|
+
* @public
|
|
1139
1299
|
* <p>The name of the namespace the recovery point is associated with.</p>
|
|
1140
1300
|
*/
|
|
1141
1301
|
namespaceName?: string;
|
|
1142
1302
|
/**
|
|
1303
|
+
* @public
|
|
1143
1304
|
* <p>The name of the workgroup the recovery point is associated with.</p>
|
|
1144
1305
|
*/
|
|
1145
1306
|
workgroupName?: string;
|
|
1146
1307
|
/**
|
|
1308
|
+
* @public
|
|
1147
1309
|
* <p>The Amazon Resource Name (ARN) of the namespace the recovery point is associated with.</p>
|
|
1148
1310
|
*/
|
|
1149
1311
|
namespaceArn?: string;
|
|
@@ -1153,6 +1315,7 @@ export interface RecoveryPoint {
|
|
|
1153
1315
|
*/
|
|
1154
1316
|
export interface GetRecoveryPointResponse {
|
|
1155
1317
|
/**
|
|
1318
|
+
* @public
|
|
1156
1319
|
* <p>The returned recovery point object.</p>
|
|
1157
1320
|
*/
|
|
1158
1321
|
recoveryPoint?: RecoveryPoint;
|
|
@@ -1162,6 +1325,7 @@ export interface GetRecoveryPointResponse {
|
|
|
1162
1325
|
*/
|
|
1163
1326
|
export interface GetResourcePolicyRequest {
|
|
1164
1327
|
/**
|
|
1328
|
+
* @public
|
|
1165
1329
|
* <p>The Amazon Resource Name (ARN) of the resource to return.</p>
|
|
1166
1330
|
*/
|
|
1167
1331
|
resourceArn: string | undefined;
|
|
@@ -1172,10 +1336,12 @@ export interface GetResourcePolicyRequest {
|
|
|
1172
1336
|
*/
|
|
1173
1337
|
export interface ResourcePolicy {
|
|
1174
1338
|
/**
|
|
1339
|
+
* @public
|
|
1175
1340
|
* <p>The Amazon Resource Name (ARN) of the policy.</p>
|
|
1176
1341
|
*/
|
|
1177
1342
|
resourceArn?: string;
|
|
1178
1343
|
/**
|
|
1344
|
+
* @public
|
|
1179
1345
|
* <p>The resource policy.</p>
|
|
1180
1346
|
*/
|
|
1181
1347
|
policy?: string;
|
|
@@ -1185,6 +1351,7 @@ export interface ResourcePolicy {
|
|
|
1185
1351
|
*/
|
|
1186
1352
|
export interface GetResourcePolicyResponse {
|
|
1187
1353
|
/**
|
|
1354
|
+
* @public
|
|
1188
1355
|
* <p>The returned resource policy.</p>
|
|
1189
1356
|
*/
|
|
1190
1357
|
resourcePolicy?: ResourcePolicy;
|
|
@@ -1194,14 +1361,17 @@ export interface GetResourcePolicyResponse {
|
|
|
1194
1361
|
*/
|
|
1195
1362
|
export interface GetSnapshotRequest {
|
|
1196
1363
|
/**
|
|
1364
|
+
* @public
|
|
1197
1365
|
* <p>The name of the snapshot to return.</p>
|
|
1198
1366
|
*/
|
|
1199
1367
|
snapshotName?: string;
|
|
1200
1368
|
/**
|
|
1369
|
+
* @public
|
|
1201
1370
|
* <p>The owner Amazon Web Services account of a snapshot shared with another user.</p>
|
|
1202
1371
|
*/
|
|
1203
1372
|
ownerAccount?: string;
|
|
1204
1373
|
/**
|
|
1374
|
+
* @public
|
|
1205
1375
|
* <p>The Amazon Resource Name (ARN) of the snapshot to return.</p>
|
|
1206
1376
|
*/
|
|
1207
1377
|
snapshotArn?: string;
|
|
@@ -1211,6 +1381,7 @@ export interface GetSnapshotRequest {
|
|
|
1211
1381
|
*/
|
|
1212
1382
|
export interface GetSnapshotResponse {
|
|
1213
1383
|
/**
|
|
1384
|
+
* @public
|
|
1214
1385
|
* <p>The returned snapshot object.</p>
|
|
1215
1386
|
*/
|
|
1216
1387
|
snapshot?: Snapshot;
|
|
@@ -1220,6 +1391,7 @@ export interface GetSnapshotResponse {
|
|
|
1220
1391
|
*/
|
|
1221
1392
|
export interface GetTableRestoreStatusRequest {
|
|
1222
1393
|
/**
|
|
1394
|
+
* @public
|
|
1223
1395
|
* <p>The ID of the <code>RestoreTableFromSnapshot</code> request to return status for.</p>
|
|
1224
1396
|
*/
|
|
1225
1397
|
tableRestoreRequestId: string | undefined;
|
|
@@ -1230,65 +1402,80 @@ export interface GetTableRestoreStatusRequest {
|
|
|
1230
1402
|
*/
|
|
1231
1403
|
export interface TableRestoreStatus {
|
|
1232
1404
|
/**
|
|
1405
|
+
* @public
|
|
1233
1406
|
* <p>The ID of the RestoreTableFromSnapshot request.</p>
|
|
1234
1407
|
*/
|
|
1235
1408
|
tableRestoreRequestId?: string;
|
|
1236
1409
|
/**
|
|
1410
|
+
* @public
|
|
1237
1411
|
* <p>A value that describes the current state of the table restore request.
|
|
1238
1412
|
* Possible values include <code>SUCCEEDED</code>, <code>FAILED</code>, <code>CANCELED</code>, <code>PENDING</code>, <code>IN_PROGRESS</code>.</p>
|
|
1239
1413
|
*/
|
|
1240
1414
|
status?: string;
|
|
1241
1415
|
/**
|
|
1416
|
+
* @public
|
|
1242
1417
|
* <p>A description of the status of the table restore request.
|
|
1243
1418
|
* Status values include <code>SUCCEEDED</code>, <code>FAILED</code>, <code>CANCELED</code>, <code>PENDING</code>, <code>IN_PROGRESS</code>.</p>
|
|
1244
1419
|
*/
|
|
1245
1420
|
message?: string;
|
|
1246
1421
|
/**
|
|
1422
|
+
* @public
|
|
1247
1423
|
* <p>The time that the table restore request was made,
|
|
1248
1424
|
* in Universal Coordinated Time (UTC).</p>
|
|
1249
1425
|
*/
|
|
1250
1426
|
requestTime?: Date;
|
|
1251
1427
|
/**
|
|
1428
|
+
* @public
|
|
1252
1429
|
* <p>The namespace of the table being restored from.</p>
|
|
1253
1430
|
*/
|
|
1254
1431
|
namespaceName?: string;
|
|
1255
1432
|
/**
|
|
1433
|
+
* @public
|
|
1256
1434
|
* <p>The name of the workgroup being restored from.</p>
|
|
1257
1435
|
*/
|
|
1258
1436
|
workgroupName?: string;
|
|
1259
1437
|
/**
|
|
1438
|
+
* @public
|
|
1260
1439
|
* <p>The name of the snapshot being restored from.</p>
|
|
1261
1440
|
*/
|
|
1262
1441
|
snapshotName?: string;
|
|
1263
1442
|
/**
|
|
1443
|
+
* @public
|
|
1264
1444
|
* <p>The amount of data restored to the new table so far, in megabytes (MB).</p>
|
|
1265
1445
|
*/
|
|
1266
1446
|
progressInMegaBytes?: number;
|
|
1267
1447
|
/**
|
|
1448
|
+
* @public
|
|
1268
1449
|
* <p>The total amount of data to restore to the new table, in megabytes (MB).</p>
|
|
1269
1450
|
*/
|
|
1270
1451
|
totalDataInMegaBytes?: number;
|
|
1271
1452
|
/**
|
|
1453
|
+
* @public
|
|
1272
1454
|
* <p>The name of the source database being restored from.</p>
|
|
1273
1455
|
*/
|
|
1274
1456
|
sourceDatabaseName?: string;
|
|
1275
1457
|
/**
|
|
1458
|
+
* @public
|
|
1276
1459
|
* <p>The name of the source schema being restored from.</p>
|
|
1277
1460
|
*/
|
|
1278
1461
|
sourceSchemaName?: string;
|
|
1279
1462
|
/**
|
|
1463
|
+
* @public
|
|
1280
1464
|
* <p>The name of the source table being restored from.</p>
|
|
1281
1465
|
*/
|
|
1282
1466
|
sourceTableName?: string;
|
|
1283
1467
|
/**
|
|
1468
|
+
* @public
|
|
1284
1469
|
* <p>The name of the database to restore to.</p>
|
|
1285
1470
|
*/
|
|
1286
1471
|
targetDatabaseName?: string;
|
|
1287
1472
|
/**
|
|
1473
|
+
* @public
|
|
1288
1474
|
* <p>The name of the schema to restore to.</p>
|
|
1289
1475
|
*/
|
|
1290
1476
|
targetSchemaName?: string;
|
|
1291
1477
|
/**
|
|
1478
|
+
* @public
|
|
1292
1479
|
* <p>The name of the table to create from the restore operation.</p>
|
|
1293
1480
|
*/
|
|
1294
1481
|
newTableName?: string;
|
|
@@ -1298,6 +1485,7 @@ export interface TableRestoreStatus {
|
|
|
1298
1485
|
*/
|
|
1299
1486
|
export interface GetTableRestoreStatusResponse {
|
|
1300
1487
|
/**
|
|
1488
|
+
* @public
|
|
1301
1489
|
* <p>The returned <code>TableRestoreStatus</code> object that contains information about
|
|
1302
1490
|
* the status of your <code>RestoreTableFromSnapshot</code> request.</p>
|
|
1303
1491
|
*/
|
|
@@ -1308,6 +1496,7 @@ export interface GetTableRestoreStatusResponse {
|
|
|
1308
1496
|
*/
|
|
1309
1497
|
export interface GetUsageLimitRequest {
|
|
1310
1498
|
/**
|
|
1499
|
+
* @public
|
|
1311
1500
|
* <p>The unique identifier of the usage limit to return information for.</p>
|
|
1312
1501
|
*/
|
|
1313
1502
|
usageLimitId: string | undefined;
|
|
@@ -1317,6 +1506,7 @@ export interface GetUsageLimitRequest {
|
|
|
1317
1506
|
*/
|
|
1318
1507
|
export interface GetUsageLimitResponse {
|
|
1319
1508
|
/**
|
|
1509
|
+
* @public
|
|
1320
1510
|
* <p>The returned usage limit object.</p>
|
|
1321
1511
|
*/
|
|
1322
1512
|
usageLimit?: UsageLimit;
|
|
@@ -1326,6 +1516,7 @@ export interface GetUsageLimitResponse {
|
|
|
1326
1516
|
*/
|
|
1327
1517
|
export interface GetWorkgroupRequest {
|
|
1328
1518
|
/**
|
|
1519
|
+
* @public
|
|
1329
1520
|
* <p>The name of the workgroup to return information for.</p>
|
|
1330
1521
|
*/
|
|
1331
1522
|
workgroupName: string | undefined;
|
|
@@ -1335,6 +1526,7 @@ export interface GetWorkgroupRequest {
|
|
|
1335
1526
|
*/
|
|
1336
1527
|
export interface GetWorkgroupResponse {
|
|
1337
1528
|
/**
|
|
1529
|
+
* @public
|
|
1338
1530
|
* <p>The returned workgroup object.</p>
|
|
1339
1531
|
*/
|
|
1340
1532
|
workgroup: Workgroup | undefined;
|
|
@@ -1356,12 +1548,14 @@ export declare class InvalidPaginationException extends __BaseException {
|
|
|
1356
1548
|
*/
|
|
1357
1549
|
export interface ListNamespacesRequest {
|
|
1358
1550
|
/**
|
|
1551
|
+
* @public
|
|
1359
1552
|
* <p>If your initial <code>ListNamespaces</code> operation returns a <code>nextToken</code>,
|
|
1360
1553
|
* you can include the returned <code>nextToken</code> in following <code>ListNamespaces</code> operations,
|
|
1361
1554
|
* which returns results in the next page.</p>
|
|
1362
1555
|
*/
|
|
1363
1556
|
nextToken?: string;
|
|
1364
1557
|
/**
|
|
1558
|
+
* @public
|
|
1365
1559
|
* <p>An optional parameter that specifies the maximum number of results to return.
|
|
1366
1560
|
* You can use <code>nextToken</code> to display the next page of results.</p>
|
|
1367
1561
|
*/
|
|
@@ -1372,12 +1566,14 @@ export interface ListNamespacesRequest {
|
|
|
1372
1566
|
*/
|
|
1373
1567
|
export interface ListNamespacesResponse {
|
|
1374
1568
|
/**
|
|
1569
|
+
* @public
|
|
1375
1570
|
* <p>When <code>nextToken</code> is returned, there are more results available.
|
|
1376
1571
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
1377
1572
|
* Make the call again using the returned token to retrieve the next page.</p>
|
|
1378
1573
|
*/
|
|
1379
1574
|
nextToken?: string;
|
|
1380
1575
|
/**
|
|
1576
|
+
* @public
|
|
1381
1577
|
* <p>The list of returned namespaces.</p>
|
|
1382
1578
|
*/
|
|
1383
1579
|
namespaces: Namespace[] | undefined;
|
|
@@ -1387,29 +1583,35 @@ export interface ListNamespacesResponse {
|
|
|
1387
1583
|
*/
|
|
1388
1584
|
export interface ListRecoveryPointsRequest {
|
|
1389
1585
|
/**
|
|
1586
|
+
* @public
|
|
1390
1587
|
* <p>If your initial <code>ListRecoveryPoints</code> operation returns a <code>nextToken</code>,
|
|
1391
1588
|
* you can include the returned <code>nextToken</code> in following <code>ListRecoveryPoints</code> operations,
|
|
1392
1589
|
* which returns results in the next page.</p>
|
|
1393
1590
|
*/
|
|
1394
1591
|
nextToken?: string;
|
|
1395
1592
|
/**
|
|
1593
|
+
* @public
|
|
1396
1594
|
* <p>An optional parameter that specifies the maximum number of results to return.
|
|
1397
1595
|
* You can use <code>nextToken</code> to display the next page of results.</p>
|
|
1398
1596
|
*/
|
|
1399
1597
|
maxResults?: number;
|
|
1400
1598
|
/**
|
|
1599
|
+
* @public
|
|
1401
1600
|
* <p>The time when the recovery point's creation was initiated.</p>
|
|
1402
1601
|
*/
|
|
1403
1602
|
startTime?: Date;
|
|
1404
1603
|
/**
|
|
1604
|
+
* @public
|
|
1405
1605
|
* <p>The time when creation of the recovery point finished.</p>
|
|
1406
1606
|
*/
|
|
1407
1607
|
endTime?: Date;
|
|
1408
1608
|
/**
|
|
1609
|
+
* @public
|
|
1409
1610
|
* <p>The name of the namespace to list recovery points for.</p>
|
|
1410
1611
|
*/
|
|
1411
1612
|
namespaceName?: string;
|
|
1412
1613
|
/**
|
|
1614
|
+
* @public
|
|
1413
1615
|
* <p>The Amazon Resource Name (ARN) of the namespace from which to list recovery points.</p>
|
|
1414
1616
|
*/
|
|
1415
1617
|
namespaceArn?: string;
|
|
@@ -1419,10 +1621,12 @@ export interface ListRecoveryPointsRequest {
|
|
|
1419
1621
|
*/
|
|
1420
1622
|
export interface ListRecoveryPointsResponse {
|
|
1421
1623
|
/**
|
|
1624
|
+
* @public
|
|
1422
1625
|
* <p>The returned recovery point objects.</p>
|
|
1423
1626
|
*/
|
|
1424
1627
|
recoveryPoints?: RecoveryPoint[];
|
|
1425
1628
|
/**
|
|
1629
|
+
* @public
|
|
1426
1630
|
* <p>If <code>nextToken</code> is returned, there are more results available.
|
|
1427
1631
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
1428
1632
|
* Make the call again using the returned token to retrieve the next page.</p>
|
|
@@ -1434,33 +1638,40 @@ export interface ListRecoveryPointsResponse {
|
|
|
1434
1638
|
*/
|
|
1435
1639
|
export interface ListSnapshotsRequest {
|
|
1436
1640
|
/**
|
|
1641
|
+
* @public
|
|
1437
1642
|
* <p>If <code>nextToken</code> is returned, there are more results available.
|
|
1438
1643
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
1439
1644
|
* Make the call again using the returned token to retrieve the next page.</p>
|
|
1440
1645
|
*/
|
|
1441
1646
|
nextToken?: string;
|
|
1442
1647
|
/**
|
|
1648
|
+
* @public
|
|
1443
1649
|
* <p>An optional parameter that specifies the maximum number of results to return.
|
|
1444
1650
|
* You can use <code>nextToken</code> to display the next page of results.</p>
|
|
1445
1651
|
*/
|
|
1446
1652
|
maxResults?: number;
|
|
1447
1653
|
/**
|
|
1654
|
+
* @public
|
|
1448
1655
|
* <p>The namespace from which to list all snapshots.</p>
|
|
1449
1656
|
*/
|
|
1450
1657
|
namespaceName?: string;
|
|
1451
1658
|
/**
|
|
1659
|
+
* @public
|
|
1452
1660
|
* <p>The Amazon Resource Name (ARN) of the namespace from which to list all snapshots.</p>
|
|
1453
1661
|
*/
|
|
1454
1662
|
namespaceArn?: string;
|
|
1455
1663
|
/**
|
|
1664
|
+
* @public
|
|
1456
1665
|
* <p>The owner Amazon Web Services account of the snapshot.</p>
|
|
1457
1666
|
*/
|
|
1458
1667
|
ownerAccount?: string;
|
|
1459
1668
|
/**
|
|
1669
|
+
* @public
|
|
1460
1670
|
* <p>The time when the creation of the snapshot was initiated.</p>
|
|
1461
1671
|
*/
|
|
1462
1672
|
startTime?: Date;
|
|
1463
1673
|
/**
|
|
1674
|
+
* @public
|
|
1464
1675
|
* <p>The timestamp showing when the snapshot creation finished.</p>
|
|
1465
1676
|
*/
|
|
1466
1677
|
endTime?: Date;
|
|
@@ -1470,12 +1681,14 @@ export interface ListSnapshotsRequest {
|
|
|
1470
1681
|
*/
|
|
1471
1682
|
export interface ListSnapshotsResponse {
|
|
1472
1683
|
/**
|
|
1684
|
+
* @public
|
|
1473
1685
|
* <p>If <code>nextToken</code> is returned, there are more results available.
|
|
1474
1686
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
1475
1687
|
* Make the call again using the returned token to retrieve the next page.</p>
|
|
1476
1688
|
*/
|
|
1477
1689
|
nextToken?: string;
|
|
1478
1690
|
/**
|
|
1691
|
+
* @public
|
|
1479
1692
|
* <p>All of the returned snapshot objects.</p>
|
|
1480
1693
|
*/
|
|
1481
1694
|
snapshots?: Snapshot[];
|
|
@@ -1485,21 +1698,25 @@ export interface ListSnapshotsResponse {
|
|
|
1485
1698
|
*/
|
|
1486
1699
|
export interface ListTableRestoreStatusRequest {
|
|
1487
1700
|
/**
|
|
1701
|
+
* @public
|
|
1488
1702
|
* <p>If your initial <code>ListTableRestoreStatus</code> operation returns a nextToken,
|
|
1489
1703
|
* you can include the returned <code>nextToken</code> in following <code>ListTableRestoreStatus</code>
|
|
1490
1704
|
* operations. This will return results on the next page.</p>
|
|
1491
1705
|
*/
|
|
1492
1706
|
nextToken?: string;
|
|
1493
1707
|
/**
|
|
1708
|
+
* @public
|
|
1494
1709
|
* <p>An optional parameter that specifies the maximum number of results to
|
|
1495
1710
|
* return. You can use nextToken to display the next page of results.</p>
|
|
1496
1711
|
*/
|
|
1497
1712
|
maxResults?: number;
|
|
1498
1713
|
/**
|
|
1714
|
+
* @public
|
|
1499
1715
|
* <p>The namespace from which to list all of the statuses of <code>RestoreTableFromSnapshot</code> operations .</p>
|
|
1500
1716
|
*/
|
|
1501
1717
|
namespaceName?: string;
|
|
1502
1718
|
/**
|
|
1719
|
+
* @public
|
|
1503
1720
|
* <p>The workgroup from which to list all of the statuses of <code>RestoreTableFromSnapshot</code> operations.</p>
|
|
1504
1721
|
*/
|
|
1505
1722
|
workgroupName?: string;
|
|
@@ -1509,12 +1726,14 @@ export interface ListTableRestoreStatusRequest {
|
|
|
1509
1726
|
*/
|
|
1510
1727
|
export interface ListTableRestoreStatusResponse {
|
|
1511
1728
|
/**
|
|
1729
|
+
* @public
|
|
1512
1730
|
* <p>If your initial <code>ListTableRestoreStatus</code> operation returns a <code>nextToken</code>,
|
|
1513
1731
|
* you can include the returned <code>nextToken</code> in following <code>ListTableRestoreStatus</code>
|
|
1514
1732
|
* operations. This will returns results on the next page.</p>
|
|
1515
1733
|
*/
|
|
1516
1734
|
nextToken?: string;
|
|
1517
1735
|
/**
|
|
1736
|
+
* @public
|
|
1518
1737
|
* <p>The array of returned <code>TableRestoreStatus</code> objects.</p>
|
|
1519
1738
|
*/
|
|
1520
1739
|
tableRestoreStatuses?: TableRestoreStatus[];
|
|
@@ -1524,6 +1743,7 @@ export interface ListTableRestoreStatusResponse {
|
|
|
1524
1743
|
*/
|
|
1525
1744
|
export interface ListTagsForResourceRequest {
|
|
1526
1745
|
/**
|
|
1746
|
+
* @public
|
|
1527
1747
|
* <p>The Amazon Resource Name (ARN) of the resource to list tags for.</p>
|
|
1528
1748
|
*/
|
|
1529
1749
|
resourceArn: string | undefined;
|
|
@@ -1533,6 +1753,7 @@ export interface ListTagsForResourceRequest {
|
|
|
1533
1753
|
*/
|
|
1534
1754
|
export interface ListTagsForResourceResponse {
|
|
1535
1755
|
/**
|
|
1756
|
+
* @public
|
|
1536
1757
|
* <p>A map of the key-value pairs assigned to the resource.</p>
|
|
1537
1758
|
*/
|
|
1538
1759
|
tags?: Tag[];
|
|
@@ -1556,14 +1777,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
1556
1777
|
*/
|
|
1557
1778
|
export interface ListUsageLimitsRequest {
|
|
1558
1779
|
/**
|
|
1780
|
+
* @public
|
|
1559
1781
|
* <p>The Amazon Resource Name (ARN) associated with the resource whose usage limits you want to list.</p>
|
|
1560
1782
|
*/
|
|
1561
1783
|
resourceArn?: string;
|
|
1562
1784
|
/**
|
|
1785
|
+
* @public
|
|
1563
1786
|
* <p>The Amazon Redshift Serverless feature whose limits you want to see.</p>
|
|
1564
1787
|
*/
|
|
1565
1788
|
usageType?: UsageLimitUsageType | string;
|
|
1566
1789
|
/**
|
|
1790
|
+
* @public
|
|
1567
1791
|
* <p>If your initial <code>ListUsageLimits</code> operation returns a <code>nextToken</code>,
|
|
1568
1792
|
* you can include the returned <code>nextToken</code> in following <code>ListUsageLimits</code> operations,
|
|
1569
1793
|
* which returns results in the next page.
|
|
@@ -1571,6 +1795,7 @@ export interface ListUsageLimitsRequest {
|
|
|
1571
1795
|
*/
|
|
1572
1796
|
nextToken?: string;
|
|
1573
1797
|
/**
|
|
1798
|
+
* @public
|
|
1574
1799
|
* <p>An optional parameter that specifies the maximum number of results to return.
|
|
1575
1800
|
* You can use <code>nextToken</code> to get the next page of results. The default is 100.</p>
|
|
1576
1801
|
*/
|
|
@@ -1581,10 +1806,12 @@ export interface ListUsageLimitsRequest {
|
|
|
1581
1806
|
*/
|
|
1582
1807
|
export interface ListUsageLimitsResponse {
|
|
1583
1808
|
/**
|
|
1809
|
+
* @public
|
|
1584
1810
|
* <p>An array of returned usage limit objects.</p>
|
|
1585
1811
|
*/
|
|
1586
1812
|
usageLimits?: UsageLimit[];
|
|
1587
1813
|
/**
|
|
1814
|
+
* @public
|
|
1588
1815
|
* <p>When <code>nextToken</code> is returned, there are more results available.
|
|
1589
1816
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
1590
1817
|
* Make the call again using the returned token to retrieve the next page.</p>
|
|
@@ -1596,12 +1823,14 @@ export interface ListUsageLimitsResponse {
|
|
|
1596
1823
|
*/
|
|
1597
1824
|
export interface ListWorkgroupsRequest {
|
|
1598
1825
|
/**
|
|
1826
|
+
* @public
|
|
1599
1827
|
* <p>If your initial ListWorkgroups operation returns a <code>nextToken</code>,
|
|
1600
1828
|
* you can include the returned <code>nextToken</code> in following ListNamespaces operations,
|
|
1601
1829
|
* which returns results in the next page.</p>
|
|
1602
1830
|
*/
|
|
1603
1831
|
nextToken?: string;
|
|
1604
1832
|
/**
|
|
1833
|
+
* @public
|
|
1605
1834
|
* <p>An optional parameter that specifies the maximum number of results to return.
|
|
1606
1835
|
* You can use <code>nextToken</code> to display the next page of results.</p>
|
|
1607
1836
|
*/
|
|
@@ -1612,6 +1841,7 @@ export interface ListWorkgroupsRequest {
|
|
|
1612
1841
|
*/
|
|
1613
1842
|
export interface ListWorkgroupsResponse {
|
|
1614
1843
|
/**
|
|
1844
|
+
* @public
|
|
1615
1845
|
* <p>
|
|
1616
1846
|
* If <code>nextToken</code> is returned, there are more results available.
|
|
1617
1847
|
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
@@ -1619,6 +1849,7 @@ export interface ListWorkgroupsResponse {
|
|
|
1619
1849
|
*/
|
|
1620
1850
|
nextToken?: string;
|
|
1621
1851
|
/**
|
|
1852
|
+
* @public
|
|
1622
1853
|
* <p>The returned array of workgroups.</p>
|
|
1623
1854
|
*/
|
|
1624
1855
|
workgroups: Workgroup[] | undefined;
|
|
@@ -1628,33 +1859,40 @@ export interface ListWorkgroupsResponse {
|
|
|
1628
1859
|
*/
|
|
1629
1860
|
export interface UpdateNamespaceRequest {
|
|
1630
1861
|
/**
|
|
1862
|
+
* @public
|
|
1631
1863
|
* <p>The name of the namespace to update. You can't update the name of a namespace once it is created.</p>
|
|
1632
1864
|
*/
|
|
1633
1865
|
namespaceName: string | undefined;
|
|
1634
1866
|
/**
|
|
1867
|
+
* @public
|
|
1635
1868
|
* <p>The password of the administrator for the first database created in the namespace. This parameter must be updated together
|
|
1636
1869
|
* with <code>adminUsername</code>.</p>
|
|
1637
1870
|
*/
|
|
1638
1871
|
adminUserPassword?: string;
|
|
1639
1872
|
/**
|
|
1873
|
+
* @public
|
|
1640
1874
|
* <p>The username of the administrator for the first database created in the namespace. This parameter must be updated
|
|
1641
1875
|
* together with <code>adminUserPassword</code>.</p>
|
|
1642
1876
|
*/
|
|
1643
1877
|
adminUsername?: string;
|
|
1644
1878
|
/**
|
|
1879
|
+
* @public
|
|
1645
1880
|
* <p>The ID of the Amazon Web Services Key Management Service key used to encrypt your data.</p>
|
|
1646
1881
|
*/
|
|
1647
1882
|
kmsKeyId?: string;
|
|
1648
1883
|
/**
|
|
1884
|
+
* @public
|
|
1649
1885
|
* <p>The Amazon Resource Name (ARN) of the IAM role to set as a default in the namespace. This parameter must be updated together
|
|
1650
1886
|
* with <code>iamRoles</code>.</p>
|
|
1651
1887
|
*/
|
|
1652
1888
|
defaultIamRoleArn?: string;
|
|
1653
1889
|
/**
|
|
1890
|
+
* @public
|
|
1654
1891
|
* <p>A list of IAM roles to associate with the namespace. This parameter must be updated together with <code>defaultIamRoleArn</code>.</p>
|
|
1655
1892
|
*/
|
|
1656
1893
|
iamRoles?: string[];
|
|
1657
1894
|
/**
|
|
1895
|
+
* @public
|
|
1658
1896
|
* <p>The types of logs the namespace can export. The export types are <code>userlog</code>, <code>connectionlog</code>, and <code>useractivitylog</code>.</p>
|
|
1659
1897
|
*/
|
|
1660
1898
|
logExports?: (LogExport | string)[];
|
|
@@ -1664,6 +1902,7 @@ export interface UpdateNamespaceRequest {
|
|
|
1664
1902
|
*/
|
|
1665
1903
|
export interface UpdateNamespaceResponse {
|
|
1666
1904
|
/**
|
|
1905
|
+
* @public
|
|
1667
1906
|
* <p>A list of tag instances.</p>
|
|
1668
1907
|
*/
|
|
1669
1908
|
namespace: Namespace | undefined;
|
|
@@ -1673,10 +1912,12 @@ export interface UpdateNamespaceResponse {
|
|
|
1673
1912
|
*/
|
|
1674
1913
|
export interface PutResourcePolicyRequest {
|
|
1675
1914
|
/**
|
|
1915
|
+
* @public
|
|
1676
1916
|
* <p>The Amazon Resource Name (ARN) of the account to create or update a resource policy for.</p>
|
|
1677
1917
|
*/
|
|
1678
1918
|
resourceArn: string | undefined;
|
|
1679
1919
|
/**
|
|
1920
|
+
* @public
|
|
1680
1921
|
* <p>The policy to create or update. For example, the following policy grants a user authorization to restore a snapshot.</p>
|
|
1681
1922
|
* <p>
|
|
1682
1923
|
* <code>"\{\"Version\": \"2012-10-17\", \"Statement\" :
|
|
@@ -1692,6 +1933,7 @@ export interface PutResourcePolicyRequest {
|
|
|
1692
1933
|
*/
|
|
1693
1934
|
export interface PutResourcePolicyResponse {
|
|
1694
1935
|
/**
|
|
1936
|
+
* @public
|
|
1695
1937
|
* <p>The policy that was created or updated.</p>
|
|
1696
1938
|
*/
|
|
1697
1939
|
resourcePolicy?: ResourcePolicy;
|
|
@@ -1701,14 +1943,17 @@ export interface PutResourcePolicyResponse {
|
|
|
1701
1943
|
*/
|
|
1702
1944
|
export interface RestoreFromRecoveryPointRequest {
|
|
1703
1945
|
/**
|
|
1946
|
+
* @public
|
|
1704
1947
|
* <p>The unique identifier of the recovery point to restore from.</p>
|
|
1705
1948
|
*/
|
|
1706
1949
|
recoveryPointId: string | undefined;
|
|
1707
1950
|
/**
|
|
1951
|
+
* @public
|
|
1708
1952
|
* <p>The name of the namespace to restore data into.</p>
|
|
1709
1953
|
*/
|
|
1710
1954
|
namespaceName: string | undefined;
|
|
1711
1955
|
/**
|
|
1956
|
+
* @public
|
|
1712
1957
|
* <p>The name of the workgroup used to restore data.</p>
|
|
1713
1958
|
*/
|
|
1714
1959
|
workgroupName: string | undefined;
|
|
@@ -1718,10 +1963,12 @@ export interface RestoreFromRecoveryPointRequest {
|
|
|
1718
1963
|
*/
|
|
1719
1964
|
export interface RestoreFromRecoveryPointResponse {
|
|
1720
1965
|
/**
|
|
1966
|
+
* @public
|
|
1721
1967
|
* <p>The unique identifier of the recovery point used for the restore.</p>
|
|
1722
1968
|
*/
|
|
1723
1969
|
recoveryPointId?: string;
|
|
1724
1970
|
/**
|
|
1971
|
+
* @public
|
|
1725
1972
|
* <p>The namespace that data was restored into.</p>
|
|
1726
1973
|
*/
|
|
1727
1974
|
namespace?: Namespace;
|
|
@@ -1731,24 +1978,29 @@ export interface RestoreFromRecoveryPointResponse {
|
|
|
1731
1978
|
*/
|
|
1732
1979
|
export interface RestoreFromSnapshotRequest {
|
|
1733
1980
|
/**
|
|
1981
|
+
* @public
|
|
1734
1982
|
* <p>The name of the namespace to restore the snapshot to.</p>
|
|
1735
1983
|
*/
|
|
1736
1984
|
namespaceName: string | undefined;
|
|
1737
1985
|
/**
|
|
1986
|
+
* @public
|
|
1738
1987
|
* <p>The name of the workgroup used to restore the snapshot.</p>
|
|
1739
1988
|
*/
|
|
1740
1989
|
workgroupName: string | undefined;
|
|
1741
1990
|
/**
|
|
1991
|
+
* @public
|
|
1742
1992
|
* <p>The name of the snapshot to restore from. Must not be specified at the same time as <code>snapshotArn</code>.</p>
|
|
1743
1993
|
*/
|
|
1744
1994
|
snapshotName?: string;
|
|
1745
1995
|
/**
|
|
1996
|
+
* @public
|
|
1746
1997
|
* <p>The Amazon Resource Name (ARN) of the snapshot to restore from. Required if restoring from Amazon Redshift Serverless to a provisioned cluster.
|
|
1747
1998
|
* Must not be specified at the same time as <code>snapshotName</code>.</p>
|
|
1748
1999
|
* <p>The format of the ARN is arn:aws:redshift:<region>:<account_id>:snapshot:<cluster_identifier>/<snapshot_identifier>.</p>
|
|
1749
2000
|
*/
|
|
1750
2001
|
snapshotArn?: string;
|
|
1751
2002
|
/**
|
|
2003
|
+
* @public
|
|
1752
2004
|
* <p>The Amazon Web Services account that owns the snapshot.</p>
|
|
1753
2005
|
*/
|
|
1754
2006
|
ownerAccount?: string;
|
|
@@ -1758,14 +2010,17 @@ export interface RestoreFromSnapshotRequest {
|
|
|
1758
2010
|
*/
|
|
1759
2011
|
export interface RestoreFromSnapshotResponse {
|
|
1760
2012
|
/**
|
|
2013
|
+
* @public
|
|
1761
2014
|
* <p>The name of the snapshot used to restore the namespace.</p>
|
|
1762
2015
|
*/
|
|
1763
2016
|
snapshotName?: string;
|
|
1764
2017
|
/**
|
|
2018
|
+
* @public
|
|
1765
2019
|
* <p>The owner Amazon Web Services; account of the snapshot that was restored.</p>
|
|
1766
2020
|
*/
|
|
1767
2021
|
ownerAccount?: string;
|
|
1768
2022
|
/**
|
|
2023
|
+
* @public
|
|
1769
2024
|
* <p>A collection of database objects and users.</p>
|
|
1770
2025
|
*/
|
|
1771
2026
|
namespace?: Namespace;
|
|
@@ -1775,42 +2030,52 @@ export interface RestoreFromSnapshotResponse {
|
|
|
1775
2030
|
*/
|
|
1776
2031
|
export interface RestoreTableFromSnapshotRequest {
|
|
1777
2032
|
/**
|
|
2033
|
+
* @public
|
|
1778
2034
|
* <p>The namespace of the snapshot to restore from.</p>
|
|
1779
2035
|
*/
|
|
1780
2036
|
namespaceName: string | undefined;
|
|
1781
2037
|
/**
|
|
2038
|
+
* @public
|
|
1782
2039
|
* <p>The workgroup to restore the table to.</p>
|
|
1783
2040
|
*/
|
|
1784
2041
|
workgroupName: string | undefined;
|
|
1785
2042
|
/**
|
|
2043
|
+
* @public
|
|
1786
2044
|
* <p>The name of the snapshot to restore the table from.</p>
|
|
1787
2045
|
*/
|
|
1788
2046
|
snapshotName: string | undefined;
|
|
1789
2047
|
/**
|
|
2048
|
+
* @public
|
|
1790
2049
|
* <p>The name of the source database that contains the table being restored.</p>
|
|
1791
2050
|
*/
|
|
1792
2051
|
sourceDatabaseName: string | undefined;
|
|
1793
2052
|
/**
|
|
2053
|
+
* @public
|
|
1794
2054
|
* <p>The name of the source schema that contains the table being restored.</p>
|
|
1795
2055
|
*/
|
|
1796
2056
|
sourceSchemaName?: string;
|
|
1797
2057
|
/**
|
|
2058
|
+
* @public
|
|
1798
2059
|
* <p>The name of the source table being restored.</p>
|
|
1799
2060
|
*/
|
|
1800
2061
|
sourceTableName: string | undefined;
|
|
1801
2062
|
/**
|
|
2063
|
+
* @public
|
|
1802
2064
|
* <p>The name of the database to restore the table to.</p>
|
|
1803
2065
|
*/
|
|
1804
2066
|
targetDatabaseName?: string;
|
|
1805
2067
|
/**
|
|
2068
|
+
* @public
|
|
1806
2069
|
* <p>The name of the schema to restore the table to.</p>
|
|
1807
2070
|
*/
|
|
1808
2071
|
targetSchemaName?: string;
|
|
1809
2072
|
/**
|
|
2073
|
+
* @public
|
|
1810
2074
|
* <p>The name of the table to create from the restore operation.</p>
|
|
1811
2075
|
*/
|
|
1812
2076
|
newTableName: string | undefined;
|
|
1813
2077
|
/**
|
|
2078
|
+
* @public
|
|
1814
2079
|
* <p>Indicates whether name identifiers for database, schema, and table
|
|
1815
2080
|
* are case sensitive. If true, the names are case sensitive. If
|
|
1816
2081
|
* false, the names are not case sensitive. The default is false.</p>
|
|
@@ -1822,6 +2087,7 @@ export interface RestoreTableFromSnapshotRequest {
|
|
|
1822
2087
|
*/
|
|
1823
2088
|
export interface RestoreTableFromSnapshotResponse {
|
|
1824
2089
|
/**
|
|
2090
|
+
* @public
|
|
1825
2091
|
* <p>The TableRestoreStatus object that contains the status of the restore operation.</p>
|
|
1826
2092
|
*/
|
|
1827
2093
|
tableRestoreStatus?: TableRestoreStatus;
|
|
@@ -1831,10 +2097,12 @@ export interface RestoreTableFromSnapshotResponse {
|
|
|
1831
2097
|
*/
|
|
1832
2098
|
export interface UpdateSnapshotRequest {
|
|
1833
2099
|
/**
|
|
2100
|
+
* @public
|
|
1834
2101
|
* <p>The name of the snapshot.</p>
|
|
1835
2102
|
*/
|
|
1836
2103
|
snapshotName: string | undefined;
|
|
1837
2104
|
/**
|
|
2105
|
+
* @public
|
|
1838
2106
|
* <p>The new retention period of the snapshot.</p>
|
|
1839
2107
|
*/
|
|
1840
2108
|
retentionPeriod?: number;
|
|
@@ -1844,6 +2112,7 @@ export interface UpdateSnapshotRequest {
|
|
|
1844
2112
|
*/
|
|
1845
2113
|
export interface UpdateSnapshotResponse {
|
|
1846
2114
|
/**
|
|
2115
|
+
* @public
|
|
1847
2116
|
* <p>The updated snapshot object.</p>
|
|
1848
2117
|
*/
|
|
1849
2118
|
snapshot?: Snapshot;
|
|
@@ -1853,10 +2122,12 @@ export interface UpdateSnapshotResponse {
|
|
|
1853
2122
|
*/
|
|
1854
2123
|
export interface TagResourceRequest {
|
|
1855
2124
|
/**
|
|
2125
|
+
* @public
|
|
1856
2126
|
* <p>The Amazon Resource Name (ARN) of the resource to tag.</p>
|
|
1857
2127
|
*/
|
|
1858
2128
|
resourceArn: string | undefined;
|
|
1859
2129
|
/**
|
|
2130
|
+
* @public
|
|
1860
2131
|
* <p>The map of the key-value pairs used to tag the resource.</p>
|
|
1861
2132
|
*/
|
|
1862
2133
|
tags: Tag[] | undefined;
|
|
@@ -1871,10 +2142,12 @@ export interface TagResourceResponse {
|
|
|
1871
2142
|
*/
|
|
1872
2143
|
export interface UntagResourceRequest {
|
|
1873
2144
|
/**
|
|
2145
|
+
* @public
|
|
1874
2146
|
* <p>The Amazon Resource Name (ARN) of the resource to remove tags from.</p>
|
|
1875
2147
|
*/
|
|
1876
2148
|
resourceArn: string | undefined;
|
|
1877
2149
|
/**
|
|
2150
|
+
* @public
|
|
1878
2151
|
* <p>The tag or set of tags to remove from the resource.</p>
|
|
1879
2152
|
*/
|
|
1880
2153
|
tagKeys: string[] | undefined;
|
|
@@ -1889,16 +2162,19 @@ export interface UntagResourceResponse {
|
|
|
1889
2162
|
*/
|
|
1890
2163
|
export interface UpdateUsageLimitRequest {
|
|
1891
2164
|
/**
|
|
2165
|
+
* @public
|
|
1892
2166
|
* <p>The identifier of the usage limit to update.</p>
|
|
1893
2167
|
*/
|
|
1894
2168
|
usageLimitId: string | undefined;
|
|
1895
2169
|
/**
|
|
2170
|
+
* @public
|
|
1896
2171
|
* <p>The new limit amount. If time-based, this amount is in Redshift Processing Units (RPU) consumed per hour.
|
|
1897
2172
|
* If data-based, this amount is in terabytes (TB) of data transferred between Regions in cross-account sharing.
|
|
1898
2173
|
* The value must be a positive number.</p>
|
|
1899
2174
|
*/
|
|
1900
2175
|
amount?: number;
|
|
1901
2176
|
/**
|
|
2177
|
+
* @public
|
|
1902
2178
|
* <p>The new action that Amazon Redshift Serverless takes when the limit is reached.</p>
|
|
1903
2179
|
*/
|
|
1904
2180
|
breachAction?: UsageLimitBreachAction | string;
|
|
@@ -1908,6 +2184,7 @@ export interface UpdateUsageLimitRequest {
|
|
|
1908
2184
|
*/
|
|
1909
2185
|
export interface UpdateUsageLimitResponse {
|
|
1910
2186
|
/**
|
|
2187
|
+
* @public
|
|
1911
2188
|
* <p>The updated usage limit object.</p>
|
|
1912
2189
|
*/
|
|
1913
2190
|
usageLimit?: UsageLimit;
|
|
@@ -1917,19 +2194,23 @@ export interface UpdateUsageLimitResponse {
|
|
|
1917
2194
|
*/
|
|
1918
2195
|
export interface UpdateWorkgroupRequest {
|
|
1919
2196
|
/**
|
|
2197
|
+
* @public
|
|
1920
2198
|
* <p>The name of the workgroup to update. You can't update the name of a workgroup once it is created.</p>
|
|
1921
2199
|
*/
|
|
1922
2200
|
workgroupName: string | undefined;
|
|
1923
2201
|
/**
|
|
2202
|
+
* @public
|
|
1924
2203
|
* <p>The new base data warehouse capacity in Redshift Processing Units (RPUs).</p>
|
|
1925
2204
|
*/
|
|
1926
2205
|
baseCapacity?: number;
|
|
1927
2206
|
/**
|
|
2207
|
+
* @public
|
|
1928
2208
|
* <p>The value that specifies whether to turn on enhanced virtual
|
|
1929
2209
|
* private cloud (VPC) routing, which forces Amazon Redshift Serverless to route traffic through your VPC.</p>
|
|
1930
2210
|
*/
|
|
1931
2211
|
enhancedVpcRouting?: boolean;
|
|
1932
2212
|
/**
|
|
2213
|
+
* @public
|
|
1933
2214
|
* <p>An array of parameters to set for advanced control over a database. The
|
|
1934
2215
|
* options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitivity_identifier</code>, <code>enable_user_activity_logging</code>,
|
|
1935
2216
|
* <code>query_group</code>, <code>search_path</code>, and query monitoring metrics that let you
|
|
@@ -1939,18 +2220,22 @@ export interface UpdateWorkgroupRequest {
|
|
|
1939
2220
|
*/
|
|
1940
2221
|
configParameters?: ConfigParameter[];
|
|
1941
2222
|
/**
|
|
2223
|
+
* @public
|
|
1942
2224
|
* <p>A value that specifies whether the workgroup can be accessible from a public network.</p>
|
|
1943
2225
|
*/
|
|
1944
2226
|
publiclyAccessible?: boolean;
|
|
1945
2227
|
/**
|
|
2228
|
+
* @public
|
|
1946
2229
|
* <p>An array of VPC subnet IDs to associate with the workgroup.</p>
|
|
1947
2230
|
*/
|
|
1948
2231
|
subnetIds?: string[];
|
|
1949
2232
|
/**
|
|
2233
|
+
* @public
|
|
1950
2234
|
* <p>An array of security group IDs to associate with the workgroup.</p>
|
|
1951
2235
|
*/
|
|
1952
2236
|
securityGroupIds?: string[];
|
|
1953
2237
|
/**
|
|
2238
|
+
* @public
|
|
1954
2239
|
* <p>The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.</p>
|
|
1955
2240
|
*/
|
|
1956
2241
|
port?: number;
|
|
@@ -1960,6 +2245,7 @@ export interface UpdateWorkgroupRequest {
|
|
|
1960
2245
|
*/
|
|
1961
2246
|
export interface UpdateWorkgroupResponse {
|
|
1962
2247
|
/**
|
|
2248
|
+
* @public
|
|
1963
2249
|
* <p>The updated workgroup object.</p>
|
|
1964
2250
|
*/
|
|
1965
2251
|
workgroup: Workgroup | undefined;
|