@aws-sdk/client-redshift-serverless 3.686.0 → 3.691.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.
@@ -3,20 +3,20 @@ import { RedshiftServerlessServiceException as __BaseException } from "./Redshif
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- code?: string;
6
+ code?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
11
  export interface Association {
12
- customDomainCertificateArn?: string;
13
- customDomainCertificateExpiryTime?: Date;
14
- customDomainName?: string;
15
- workgroupName?: string;
12
+ customDomainCertificateArn?: string | undefined;
13
+ customDomainCertificateExpiryTime?: Date | undefined;
14
+ customDomainName?: string | undefined;
15
+ workgroupName?: string | undefined;
16
16
  }
17
17
  export interface ConfigParameter {
18
- parameterKey?: string;
19
- parameterValue?: string;
18
+ parameterKey?: string | undefined;
19
+ parameterValue?: string | undefined;
20
20
  }
21
21
  export declare class ConflictException extends __BaseException {
22
22
  readonly name: "ConflictException";
@@ -30,8 +30,8 @@ export interface Tag {
30
30
  export interface ConvertRecoveryPointToSnapshotRequest {
31
31
  recoveryPointId: string | undefined;
32
32
  snapshotName: string | undefined;
33
- retentionPeriod?: number;
34
- tags?: Tag[];
33
+ retentionPeriod?: number | undefined;
34
+ tags?: Tag[] | undefined;
35
35
  }
36
36
  export declare const SnapshotStatus: {
37
37
  readonly AVAILABLE: "AVAILABLE";
@@ -44,31 +44,31 @@ export declare const SnapshotStatus: {
44
44
  export type SnapshotStatus =
45
45
  (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
46
46
  export interface Snapshot {
47
- namespaceName?: string;
48
- namespaceArn?: string;
49
- snapshotName?: string;
50
- snapshotCreateTime?: Date;
51
- adminUsername?: string;
52
- status?: SnapshotStatus;
53
- kmsKeyId?: string;
54
- ownerAccount?: string;
55
- totalBackupSizeInMegaBytes?: number;
56
- actualIncrementalBackupSizeInMegaBytes?: number;
57
- backupProgressInMegaBytes?: number;
58
- currentBackupRateInMegaBytesPerSecond?: number;
59
- estimatedSecondsToCompletion?: number;
60
- elapsedTimeInSeconds?: number;
61
- snapshotRetentionPeriod?: number;
62
- snapshotRemainingDays?: number;
63
- snapshotRetentionStartTime?: Date;
64
- snapshotArn?: string;
65
- accountsWithRestoreAccess?: string[];
66
- accountsWithProvisionedRestoreAccess?: string[];
67
- adminPasswordSecretArn?: string;
68
- adminPasswordSecretKmsKeyId?: string;
47
+ namespaceName?: string | undefined;
48
+ namespaceArn?: string | undefined;
49
+ snapshotName?: string | undefined;
50
+ snapshotCreateTime?: Date | undefined;
51
+ adminUsername?: string | undefined;
52
+ status?: SnapshotStatus | undefined;
53
+ kmsKeyId?: string | undefined;
54
+ ownerAccount?: string | undefined;
55
+ totalBackupSizeInMegaBytes?: number | undefined;
56
+ actualIncrementalBackupSizeInMegaBytes?: number | undefined;
57
+ backupProgressInMegaBytes?: number | undefined;
58
+ currentBackupRateInMegaBytesPerSecond?: number | undefined;
59
+ estimatedSecondsToCompletion?: number | undefined;
60
+ elapsedTimeInSeconds?: number | undefined;
61
+ snapshotRetentionPeriod?: number | undefined;
62
+ snapshotRemainingDays?: number | undefined;
63
+ snapshotRetentionStartTime?: Date | undefined;
64
+ snapshotArn?: string | undefined;
65
+ accountsWithRestoreAccess?: string[] | undefined;
66
+ accountsWithProvisionedRestoreAccess?: string[] | undefined;
67
+ adminPasswordSecretArn?: string | undefined;
68
+ adminPasswordSecretKmsKeyId?: string | undefined;
69
69
  }
70
70
  export interface ConvertRecoveryPointToSnapshotResponse {
71
- snapshot?: Snapshot;
71
+ snapshot?: Snapshot | undefined;
72
72
  }
73
73
  export declare class InternalServerException extends __BaseException {
74
74
  readonly name: "InternalServerException";
@@ -81,7 +81,7 @@ export declare class InternalServerException extends __BaseException {
81
81
  export declare class ResourceNotFoundException extends __BaseException {
82
82
  readonly name: "ResourceNotFoundException";
83
83
  readonly $fault: "client";
84
- resourceName?: string;
84
+ resourceName?: string | undefined;
85
85
  constructor(
86
86
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
87
87
  );
@@ -96,7 +96,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
96
96
  export declare class TooManyTagsException extends __BaseException {
97
97
  readonly name: "TooManyTagsException";
98
98
  readonly $fault: "client";
99
- resourceName?: string;
99
+ resourceName?: string | undefined;
100
100
  constructor(
101
101
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
102
102
  );
@@ -114,16 +114,16 @@ export interface CreateCustomDomainAssociationRequest {
114
114
  customDomainCertificateArn: string | undefined;
115
115
  }
116
116
  export interface CreateCustomDomainAssociationResponse {
117
- customDomainName?: string;
118
- workgroupName?: string;
119
- customDomainCertificateArn?: string;
120
- customDomainCertificateExpiryTime?: Date;
117
+ customDomainName?: string | undefined;
118
+ workgroupName?: string | undefined;
119
+ customDomainCertificateArn?: string | undefined;
120
+ customDomainCertificateExpiryTime?: Date | undefined;
121
121
  }
122
122
  export declare class ThrottlingException extends __BaseException {
123
123
  readonly name: "ThrottlingException";
124
124
  readonly $fault: "client";
125
125
  $retryable: {};
126
- code?: string;
126
+ code?: string | undefined;
127
127
  constructor(
128
128
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
129
129
  );
@@ -132,39 +132,39 @@ export interface CreateEndpointAccessRequest {
132
132
  endpointName: string | undefined;
133
133
  subnetIds: string[] | undefined;
134
134
  workgroupName: string | undefined;
135
- vpcSecurityGroupIds?: string[];
136
- ownerAccount?: string;
135
+ vpcSecurityGroupIds?: string[] | undefined;
136
+ ownerAccount?: string | undefined;
137
137
  }
138
138
  export interface NetworkInterface {
139
- networkInterfaceId?: string;
140
- subnetId?: string;
141
- privateIpAddress?: string;
142
- availabilityZone?: string;
143
- ipv6Address?: string;
139
+ networkInterfaceId?: string | undefined;
140
+ subnetId?: string | undefined;
141
+ privateIpAddress?: string | undefined;
142
+ availabilityZone?: string | undefined;
143
+ ipv6Address?: string | undefined;
144
144
  }
145
145
  export interface VpcEndpoint {
146
- vpcEndpointId?: string;
147
- vpcId?: string;
148
- networkInterfaces?: NetworkInterface[];
146
+ vpcEndpointId?: string | undefined;
147
+ vpcId?: string | undefined;
148
+ networkInterfaces?: NetworkInterface[] | undefined;
149
149
  }
150
150
  export interface VpcSecurityGroupMembership {
151
- vpcSecurityGroupId?: string;
152
- status?: string;
151
+ vpcSecurityGroupId?: string | undefined;
152
+ status?: string | undefined;
153
153
  }
154
154
  export interface EndpointAccess {
155
- endpointName?: string;
156
- endpointStatus?: string;
157
- workgroupName?: string;
158
- endpointCreateTime?: Date;
159
- port?: number;
160
- address?: string;
161
- subnetIds?: string[];
162
- vpcSecurityGroups?: VpcSecurityGroupMembership[];
163
- vpcEndpoint?: VpcEndpoint;
164
- endpointArn?: string;
155
+ endpointName?: string | undefined;
156
+ endpointStatus?: string | undefined;
157
+ workgroupName?: string | undefined;
158
+ endpointCreateTime?: Date | undefined;
159
+ port?: number | undefined;
160
+ address?: string | undefined;
161
+ subnetIds?: string[] | undefined;
162
+ vpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
163
+ vpcEndpoint?: VpcEndpoint | undefined;
164
+ endpointArn?: string | undefined;
165
165
  }
166
166
  export interface CreateEndpointAccessResponse {
167
- endpoint?: EndpointAccess;
167
+ endpoint?: EndpointAccess | undefined;
168
168
  }
169
169
  export declare const LogExport: {
170
170
  readonly CONNECTION_LOG: "connectionlog";
@@ -174,17 +174,17 @@ export declare const LogExport: {
174
174
  export type LogExport = (typeof LogExport)[keyof typeof LogExport];
175
175
  export interface CreateNamespaceRequest {
176
176
  namespaceName: string | undefined;
177
- adminUsername?: string;
178
- adminUserPassword?: string;
179
- dbName?: string;
180
- kmsKeyId?: string;
181
- defaultIamRoleArn?: string;
182
- iamRoles?: string[];
183
- logExports?: LogExport[];
184
- tags?: Tag[];
185
- manageAdminPassword?: boolean;
186
- adminPasswordSecretKmsKeyId?: string;
187
- redshiftIdcApplicationArn?: string;
177
+ adminUsername?: string | undefined;
178
+ adminUserPassword?: string | undefined;
179
+ dbName?: string | undefined;
180
+ kmsKeyId?: string | undefined;
181
+ defaultIamRoleArn?: string | undefined;
182
+ iamRoles?: string[] | undefined;
183
+ logExports?: LogExport[] | undefined;
184
+ tags?: Tag[] | undefined;
185
+ manageAdminPassword?: boolean | undefined;
186
+ adminPasswordSecretKmsKeyId?: string | undefined;
187
+ redshiftIdcApplicationArn?: string | undefined;
188
188
  }
189
189
  export declare const NamespaceStatus: {
190
190
  readonly AVAILABLE: "AVAILABLE";
@@ -194,22 +194,22 @@ export declare const NamespaceStatus: {
194
194
  export type NamespaceStatus =
195
195
  (typeof NamespaceStatus)[keyof typeof NamespaceStatus];
196
196
  export interface Namespace {
197
- namespaceArn?: string;
198
- namespaceId?: string;
199
- namespaceName?: string;
200
- adminUsername?: string;
201
- dbName?: string;
202
- kmsKeyId?: string;
203
- defaultIamRoleArn?: string;
204
- iamRoles?: string[];
205
- logExports?: LogExport[];
206
- status?: NamespaceStatus;
207
- creationDate?: Date;
208
- adminPasswordSecretArn?: string;
209
- adminPasswordSecretKmsKeyId?: string;
197
+ namespaceArn?: string | undefined;
198
+ namespaceId?: string | undefined;
199
+ namespaceName?: string | undefined;
200
+ adminUsername?: string | undefined;
201
+ dbName?: string | undefined;
202
+ kmsKeyId?: string | undefined;
203
+ defaultIamRoleArn?: string | undefined;
204
+ iamRoles?: string[] | undefined;
205
+ logExports?: LogExport[] | undefined;
206
+ status?: NamespaceStatus | undefined;
207
+ creationDate?: Date | undefined;
208
+ adminPasswordSecretArn?: string | undefined;
209
+ adminPasswordSecretKmsKeyId?: string | undefined;
210
210
  }
211
211
  export interface CreateNamespaceResponse {
212
- namespace?: Namespace;
212
+ namespace?: Namespace | undefined;
213
213
  }
214
214
  export type Schedule =
215
215
  | Schedule.AtMember
@@ -241,8 +241,8 @@ export declare namespace Schedule {
241
241
  export interface CreateSnapshotScheduleActionParameters {
242
242
  namespaceName: string | undefined;
243
243
  snapshotNamePrefix: string | undefined;
244
- retentionPeriod?: number;
245
- tags?: Tag[];
244
+ retentionPeriod?: number | undefined;
245
+ tags?: Tag[] | undefined;
246
246
  }
247
247
  export type TargetAction =
248
248
  | TargetAction.CreateSnapshotMember
@@ -268,10 +268,10 @@ export interface CreateScheduledActionRequest {
268
268
  schedule: Schedule | undefined;
269
269
  roleArn: string | undefined;
270
270
  namespaceName: string | undefined;
271
- enabled?: boolean;
272
- scheduledActionDescription?: string;
273
- startTime?: Date;
274
- endTime?: Date;
271
+ enabled?: boolean | undefined;
272
+ scheduledActionDescription?: string | undefined;
273
+ startTime?: Date | undefined;
274
+ endTime?: Date | undefined;
275
275
  }
276
276
  export declare const State: {
277
277
  readonly ACTIVE: "ACTIVE";
@@ -279,43 +279,43 @@ export declare const State: {
279
279
  };
280
280
  export type State = (typeof State)[keyof typeof State];
281
281
  export interface ScheduledActionResponse {
282
- scheduledActionName?: string;
283
- schedule?: Schedule;
284
- scheduledActionDescription?: string;
285
- nextInvocations?: Date[];
286
- roleArn?: string;
287
- state?: State;
288
- startTime?: Date;
289
- endTime?: Date;
290
- targetAction?: TargetAction;
291
- namespaceName?: string;
292
- scheduledActionUuid?: string;
282
+ scheduledActionName?: string | undefined;
283
+ schedule?: Schedule | undefined;
284
+ scheduledActionDescription?: string | undefined;
285
+ nextInvocations?: Date[] | undefined;
286
+ roleArn?: string | undefined;
287
+ state?: State | undefined;
288
+ startTime?: Date | undefined;
289
+ endTime?: Date | undefined;
290
+ targetAction?: TargetAction | undefined;
291
+ namespaceName?: string | undefined;
292
+ scheduledActionUuid?: string | undefined;
293
293
  }
294
294
  export interface CreateScheduledActionResponse {
295
- scheduledAction?: ScheduledActionResponse;
295
+ scheduledAction?: ScheduledActionResponse | undefined;
296
296
  }
297
297
  export interface CreateSnapshotRequest {
298
298
  namespaceName: string | undefined;
299
299
  snapshotName: string | undefined;
300
- retentionPeriod?: number;
301
- tags?: Tag[];
300
+ retentionPeriod?: number | undefined;
301
+ tags?: Tag[] | undefined;
302
302
  }
303
303
  export interface CreateSnapshotResponse {
304
- snapshot?: Snapshot;
304
+ snapshot?: Snapshot | undefined;
305
305
  }
306
306
  export interface CreateSnapshotCopyConfigurationRequest {
307
307
  namespaceName: string | undefined;
308
308
  destinationRegion: string | undefined;
309
- snapshotRetentionPeriod?: number;
310
- destinationKmsKeyId?: string;
309
+ snapshotRetentionPeriod?: number | undefined;
310
+ destinationKmsKeyId?: string | undefined;
311
311
  }
312
312
  export interface SnapshotCopyConfiguration {
313
- snapshotCopyConfigurationId?: string;
314
- snapshotCopyConfigurationArn?: string;
315
- namespaceName?: string;
316
- destinationRegion?: string;
317
- snapshotRetentionPeriod?: number;
318
- destinationKmsKeyId?: string;
313
+ snapshotCopyConfigurationId?: string | undefined;
314
+ snapshotCopyConfigurationArn?: string | undefined;
315
+ namespaceName?: string | undefined;
316
+ destinationRegion?: string | undefined;
317
+ snapshotRetentionPeriod?: number | undefined;
318
+ destinationKmsKeyId?: string | undefined;
319
319
  }
320
320
  export interface CreateSnapshotCopyConfigurationResponse {
321
321
  snapshotCopyConfiguration: SnapshotCopyConfiguration | undefined;
@@ -344,20 +344,20 @@ export interface CreateUsageLimitRequest {
344
344
  resourceArn: string | undefined;
345
345
  usageType: UsageLimitUsageType | undefined;
346
346
  amount: number | undefined;
347
- period?: UsageLimitPeriod;
348
- breachAction?: UsageLimitBreachAction;
347
+ period?: UsageLimitPeriod | undefined;
348
+ breachAction?: UsageLimitBreachAction | undefined;
349
349
  }
350
350
  export interface UsageLimit {
351
- usageLimitId?: string;
352
- usageLimitArn?: string;
353
- resourceArn?: string;
354
- usageType?: UsageLimitUsageType;
355
- amount?: number;
356
- period?: UsageLimitPeriod;
357
- breachAction?: UsageLimitBreachAction;
351
+ usageLimitId?: string | undefined;
352
+ usageLimitArn?: string | undefined;
353
+ resourceArn?: string | undefined;
354
+ usageType?: UsageLimitUsageType | undefined;
355
+ amount?: number | undefined;
356
+ period?: UsageLimitPeriod | undefined;
357
+ breachAction?: UsageLimitBreachAction | undefined;
358
358
  }
359
359
  export interface CreateUsageLimitResponse {
360
- usageLimit?: UsageLimit;
360
+ usageLimit?: UsageLimit | undefined;
361
361
  }
362
362
  export declare const PerformanceTargetStatus: {
363
363
  readonly DISABLED: "DISABLED";
@@ -366,28 +366,28 @@ export declare const PerformanceTargetStatus: {
366
366
  export type PerformanceTargetStatus =
367
367
  (typeof PerformanceTargetStatus)[keyof typeof PerformanceTargetStatus];
368
368
  export interface PerformanceTarget {
369
- status?: PerformanceTargetStatus;
370
- level?: number;
369
+ status?: PerformanceTargetStatus | undefined;
370
+ level?: number | undefined;
371
371
  }
372
372
  export interface CreateWorkgroupRequest {
373
373
  workgroupName: string | undefined;
374
374
  namespaceName: string | undefined;
375
- baseCapacity?: number;
376
- enhancedVpcRouting?: boolean;
377
- configParameters?: ConfigParameter[];
378
- securityGroupIds?: string[];
379
- subnetIds?: string[];
380
- publiclyAccessible?: boolean;
381
- tags?: Tag[];
382
- port?: number;
383
- maxCapacity?: number;
384
- pricePerformanceTarget?: PerformanceTarget;
385
- ipAddressType?: string;
375
+ baseCapacity?: number | undefined;
376
+ enhancedVpcRouting?: boolean | undefined;
377
+ configParameters?: ConfigParameter[] | undefined;
378
+ securityGroupIds?: string[] | undefined;
379
+ subnetIds?: string[] | undefined;
380
+ publiclyAccessible?: boolean | undefined;
381
+ tags?: Tag[] | undefined;
382
+ port?: number | undefined;
383
+ maxCapacity?: number | undefined;
384
+ pricePerformanceTarget?: PerformanceTarget | undefined;
385
+ ipAddressType?: string | undefined;
386
386
  }
387
387
  export interface Endpoint {
388
- address?: string;
389
- port?: number;
390
- vpcEndpoints?: VpcEndpoint[];
388
+ address?: string | undefined;
389
+ port?: number | undefined;
390
+ vpcEndpoints?: VpcEndpoint[] | undefined;
391
391
  }
392
392
  export declare const WorkgroupStatus: {
393
393
  readonly AVAILABLE: "AVAILABLE";
@@ -398,32 +398,32 @@ export declare const WorkgroupStatus: {
398
398
  export type WorkgroupStatus =
399
399
  (typeof WorkgroupStatus)[keyof typeof WorkgroupStatus];
400
400
  export interface Workgroup {
401
- workgroupId?: string;
402
- workgroupArn?: string;
403
- workgroupName?: string;
404
- namespaceName?: string;
405
- baseCapacity?: number;
406
- enhancedVpcRouting?: boolean;
407
- configParameters?: ConfigParameter[];
408
- securityGroupIds?: string[];
409
- subnetIds?: string[];
410
- status?: WorkgroupStatus;
411
- endpoint?: Endpoint;
412
- publiclyAccessible?: boolean;
413
- creationDate?: Date;
414
- port?: number;
415
- customDomainName?: string;
416
- customDomainCertificateArn?: string;
417
- customDomainCertificateExpiryTime?: Date;
418
- workgroupVersion?: string;
419
- patchVersion?: string;
420
- maxCapacity?: number;
421
- crossAccountVpcs?: string[];
422
- ipAddressType?: string;
423
- pricePerformanceTarget?: PerformanceTarget;
401
+ workgroupId?: string | undefined;
402
+ workgroupArn?: string | undefined;
403
+ workgroupName?: string | undefined;
404
+ namespaceName?: string | undefined;
405
+ baseCapacity?: number | undefined;
406
+ enhancedVpcRouting?: boolean | undefined;
407
+ configParameters?: ConfigParameter[] | undefined;
408
+ securityGroupIds?: string[] | undefined;
409
+ subnetIds?: string[] | undefined;
410
+ status?: WorkgroupStatus | undefined;
411
+ endpoint?: Endpoint | undefined;
412
+ publiclyAccessible?: boolean | undefined;
413
+ creationDate?: Date | undefined;
414
+ port?: number | undefined;
415
+ customDomainName?: string | undefined;
416
+ customDomainCertificateArn?: string | undefined;
417
+ customDomainCertificateExpiryTime?: Date | undefined;
418
+ workgroupVersion?: string | undefined;
419
+ patchVersion?: string | undefined;
420
+ maxCapacity?: number | undefined;
421
+ crossAccountVpcs?: string[] | undefined;
422
+ ipAddressType?: string | undefined;
423
+ pricePerformanceTarget?: PerformanceTarget | undefined;
424
424
  }
425
425
  export interface CreateWorkgroupResponse {
426
- workgroup?: Workgroup;
426
+ workgroup?: Workgroup | undefined;
427
427
  }
428
428
  export declare class InsufficientCapacityException extends __BaseException {
429
429
  readonly name: "InsufficientCapacityException";
@@ -444,31 +444,31 @@ export interface DeleteEndpointAccessRequest {
444
444
  endpointName: string | undefined;
445
445
  }
446
446
  export interface DeleteEndpointAccessResponse {
447
- endpoint?: EndpointAccess;
447
+ endpoint?: EndpointAccess | undefined;
448
448
  }
449
449
  export interface GetEndpointAccessRequest {
450
450
  endpointName: string | undefined;
451
451
  }
452
452
  export interface GetEndpointAccessResponse {
453
- endpoint?: EndpointAccess;
453
+ endpoint?: EndpointAccess | undefined;
454
454
  }
455
455
  export interface ListEndpointAccessRequest {
456
- nextToken?: string;
457
- maxResults?: number;
458
- workgroupName?: string;
459
- vpcId?: string;
460
- ownerAccount?: string;
456
+ nextToken?: string | undefined;
457
+ maxResults?: number | undefined;
458
+ workgroupName?: string | undefined;
459
+ vpcId?: string | undefined;
460
+ ownerAccount?: string | undefined;
461
461
  }
462
462
  export interface ListEndpointAccessResponse {
463
- nextToken?: string;
463
+ nextToken?: string | undefined;
464
464
  endpoints: EndpointAccess[] | undefined;
465
465
  }
466
466
  export interface UpdateEndpointAccessRequest {
467
467
  endpointName: string | undefined;
468
- vpcSecurityGroupIds?: string[];
468
+ vpcSecurityGroupIds?: string[] | undefined;
469
469
  }
470
470
  export interface UpdateEndpointAccessResponse {
471
- endpoint?: EndpointAccess;
471
+ endpoint?: EndpointAccess | undefined;
472
472
  }
473
473
  export interface DeleteCustomDomainAssociationRequest {
474
474
  workgroupName: string | undefined;
@@ -477,8 +477,8 @@ export interface DeleteCustomDomainAssociationRequest {
477
477
  export interface DeleteCustomDomainAssociationResponse {}
478
478
  export interface DeleteNamespaceRequest {
479
479
  namespaceName: string | undefined;
480
- finalSnapshotName?: string;
481
- finalSnapshotRetentionPeriod?: number;
480
+ finalSnapshotName?: string | undefined;
481
+ finalSnapshotRetentionPeriod?: number | undefined;
482
482
  }
483
483
  export interface DeleteNamespaceResponse {
484
484
  namespace: Namespace | undefined;
@@ -491,13 +491,13 @@ export interface DeleteScheduledActionRequest {
491
491
  scheduledActionName: string | undefined;
492
492
  }
493
493
  export interface DeleteScheduledActionResponse {
494
- scheduledAction?: ScheduledActionResponse;
494
+ scheduledAction?: ScheduledActionResponse | undefined;
495
495
  }
496
496
  export interface DeleteSnapshotRequest {
497
497
  snapshotName: string | undefined;
498
498
  }
499
499
  export interface DeleteSnapshotResponse {
500
- snapshot?: Snapshot;
500
+ snapshot?: Snapshot | undefined;
501
501
  }
502
502
  export interface DeleteSnapshotCopyConfigurationRequest {
503
503
  snapshotCopyConfigurationId: string | undefined;
@@ -509,7 +509,7 @@ export interface DeleteUsageLimitRequest {
509
509
  usageLimitId: string | undefined;
510
510
  }
511
511
  export interface DeleteUsageLimitResponse {
512
- usageLimit?: UsageLimit;
512
+ usageLimit?: UsageLimit | undefined;
513
513
  }
514
514
  export interface DeleteWorkgroupRequest {
515
515
  workgroupName: string | undefined;
@@ -518,26 +518,26 @@ export interface DeleteWorkgroupResponse {
518
518
  workgroup: Workgroup | undefined;
519
519
  }
520
520
  export interface GetCredentialsRequest {
521
- dbName?: string;
522
- durationSeconds?: number;
523
- workgroupName?: string;
524
- customDomainName?: string;
521
+ dbName?: string | undefined;
522
+ durationSeconds?: number | undefined;
523
+ workgroupName?: string | undefined;
524
+ customDomainName?: string | undefined;
525
525
  }
526
526
  export interface GetCredentialsResponse {
527
- dbUser?: string;
528
- dbPassword?: string;
529
- expiration?: Date;
530
- nextRefreshTime?: Date;
527
+ dbUser?: string | undefined;
528
+ dbPassword?: string | undefined;
529
+ expiration?: Date | undefined;
530
+ nextRefreshTime?: Date | undefined;
531
531
  }
532
532
  export interface GetCustomDomainAssociationRequest {
533
533
  customDomainName: string | undefined;
534
534
  workgroupName: string | undefined;
535
535
  }
536
536
  export interface GetCustomDomainAssociationResponse {
537
- customDomainName?: string;
538
- workgroupName?: string;
539
- customDomainCertificateArn?: string;
540
- customDomainCertificateExpiryTime?: Date;
537
+ customDomainName?: string | undefined;
538
+ workgroupName?: string | undefined;
539
+ customDomainCertificateArn?: string | undefined;
540
+ customDomainCertificateExpiryTime?: Date | undefined;
541
541
  }
542
542
  export interface GetNamespaceRequest {
543
543
  namespaceName: string | undefined;
@@ -549,69 +549,69 @@ export interface GetRecoveryPointRequest {
549
549
  recoveryPointId: string | undefined;
550
550
  }
551
551
  export interface RecoveryPoint {
552
- recoveryPointId?: string;
553
- recoveryPointCreateTime?: Date;
554
- totalSizeInMegaBytes?: number;
555
- namespaceName?: string;
556
- workgroupName?: string;
557
- namespaceArn?: string;
552
+ recoveryPointId?: string | undefined;
553
+ recoveryPointCreateTime?: Date | undefined;
554
+ totalSizeInMegaBytes?: number | undefined;
555
+ namespaceName?: string | undefined;
556
+ workgroupName?: string | undefined;
557
+ namespaceArn?: string | undefined;
558
558
  }
559
559
  export interface GetRecoveryPointResponse {
560
- recoveryPoint?: RecoveryPoint;
560
+ recoveryPoint?: RecoveryPoint | undefined;
561
561
  }
562
562
  export interface GetResourcePolicyRequest {
563
563
  resourceArn: string | undefined;
564
564
  }
565
565
  export interface ResourcePolicy {
566
- resourceArn?: string;
567
- policy?: string;
566
+ resourceArn?: string | undefined;
567
+ policy?: string | undefined;
568
568
  }
569
569
  export interface GetResourcePolicyResponse {
570
- resourcePolicy?: ResourcePolicy;
570
+ resourcePolicy?: ResourcePolicy | undefined;
571
571
  }
572
572
  export interface GetScheduledActionRequest {
573
573
  scheduledActionName: string | undefined;
574
574
  }
575
575
  export interface GetScheduledActionResponse {
576
- scheduledAction?: ScheduledActionResponse;
576
+ scheduledAction?: ScheduledActionResponse | undefined;
577
577
  }
578
578
  export interface GetSnapshotRequest {
579
- snapshotName?: string;
580
- ownerAccount?: string;
581
- snapshotArn?: string;
579
+ snapshotName?: string | undefined;
580
+ ownerAccount?: string | undefined;
581
+ snapshotArn?: string | undefined;
582
582
  }
583
583
  export interface GetSnapshotResponse {
584
- snapshot?: Snapshot;
584
+ snapshot?: Snapshot | undefined;
585
585
  }
586
586
  export interface GetTableRestoreStatusRequest {
587
587
  tableRestoreRequestId: string | undefined;
588
588
  }
589
589
  export interface TableRestoreStatus {
590
- tableRestoreRequestId?: string;
591
- status?: string;
592
- message?: string;
593
- requestTime?: Date;
594
- namespaceName?: string;
595
- workgroupName?: string;
596
- snapshotName?: string;
597
- progressInMegaBytes?: number;
598
- totalDataInMegaBytes?: number;
599
- sourceDatabaseName?: string;
600
- sourceSchemaName?: string;
601
- sourceTableName?: string;
602
- targetDatabaseName?: string;
603
- targetSchemaName?: string;
604
- newTableName?: string;
605
- recoveryPointId?: string;
590
+ tableRestoreRequestId?: string | undefined;
591
+ status?: string | undefined;
592
+ message?: string | undefined;
593
+ requestTime?: Date | undefined;
594
+ namespaceName?: string | undefined;
595
+ workgroupName?: string | undefined;
596
+ snapshotName?: string | undefined;
597
+ progressInMegaBytes?: number | undefined;
598
+ totalDataInMegaBytes?: number | undefined;
599
+ sourceDatabaseName?: string | undefined;
600
+ sourceSchemaName?: string | undefined;
601
+ sourceTableName?: string | undefined;
602
+ targetDatabaseName?: string | undefined;
603
+ targetSchemaName?: string | undefined;
604
+ newTableName?: string | undefined;
605
+ recoveryPointId?: string | undefined;
606
606
  }
607
607
  export interface GetTableRestoreStatusResponse {
608
- tableRestoreStatus?: TableRestoreStatus;
608
+ tableRestoreStatus?: TableRestoreStatus | undefined;
609
609
  }
610
610
  export interface GetUsageLimitRequest {
611
611
  usageLimitId: string | undefined;
612
612
  }
613
613
  export interface GetUsageLimitResponse {
614
- usageLimit?: UsageLimit;
614
+ usageLimit?: UsageLimit | undefined;
615
615
  }
616
616
  export interface GetWorkgroupRequest {
617
617
  workgroupName: string | undefined;
@@ -627,115 +627,115 @@ export declare class InvalidPaginationException extends __BaseException {
627
627
  );
628
628
  }
629
629
  export interface ListCustomDomainAssociationsRequest {
630
- nextToken?: string;
631
- maxResults?: number;
632
- customDomainName?: string;
633
- customDomainCertificateArn?: string;
630
+ nextToken?: string | undefined;
631
+ maxResults?: number | undefined;
632
+ customDomainName?: string | undefined;
633
+ customDomainCertificateArn?: string | undefined;
634
634
  }
635
635
  export interface ListCustomDomainAssociationsResponse {
636
- nextToken?: string;
637
- associations?: Association[];
636
+ nextToken?: string | undefined;
637
+ associations?: Association[] | undefined;
638
638
  }
639
639
  export interface ListNamespacesRequest {
640
- nextToken?: string;
641
- maxResults?: number;
640
+ nextToken?: string | undefined;
641
+ maxResults?: number | undefined;
642
642
  }
643
643
  export interface ListNamespacesResponse {
644
- nextToken?: string;
644
+ nextToken?: string | undefined;
645
645
  namespaces: Namespace[] | undefined;
646
646
  }
647
647
  export interface ListRecoveryPointsRequest {
648
- nextToken?: string;
649
- maxResults?: number;
650
- startTime?: Date;
651
- endTime?: Date;
652
- namespaceName?: string;
653
- namespaceArn?: string;
648
+ nextToken?: string | undefined;
649
+ maxResults?: number | undefined;
650
+ startTime?: Date | undefined;
651
+ endTime?: Date | undefined;
652
+ namespaceName?: string | undefined;
653
+ namespaceArn?: string | undefined;
654
654
  }
655
655
  export interface ListRecoveryPointsResponse {
656
- recoveryPoints?: RecoveryPoint[];
657
- nextToken?: string;
656
+ recoveryPoints?: RecoveryPoint[] | undefined;
657
+ nextToken?: string | undefined;
658
658
  }
659
659
  export interface ListScheduledActionsRequest {
660
- nextToken?: string;
661
- maxResults?: number;
662
- namespaceName?: string;
660
+ nextToken?: string | undefined;
661
+ maxResults?: number | undefined;
662
+ namespaceName?: string | undefined;
663
663
  }
664
664
  export interface ScheduledActionAssociation {
665
- namespaceName?: string;
666
- scheduledActionName?: string;
665
+ namespaceName?: string | undefined;
666
+ scheduledActionName?: string | undefined;
667
667
  }
668
668
  export interface ListScheduledActionsResponse {
669
- nextToken?: string;
670
- scheduledActions?: ScheduledActionAssociation[];
669
+ nextToken?: string | undefined;
670
+ scheduledActions?: ScheduledActionAssociation[] | undefined;
671
671
  }
672
672
  export interface ListSnapshotCopyConfigurationsRequest {
673
- namespaceName?: string;
674
- nextToken?: string;
675
- maxResults?: number;
673
+ namespaceName?: string | undefined;
674
+ nextToken?: string | undefined;
675
+ maxResults?: number | undefined;
676
676
  }
677
677
  export interface ListSnapshotCopyConfigurationsResponse {
678
- nextToken?: string;
678
+ nextToken?: string | undefined;
679
679
  snapshotCopyConfigurations: SnapshotCopyConfiguration[] | undefined;
680
680
  }
681
681
  export interface ListSnapshotsRequest {
682
- nextToken?: string;
683
- maxResults?: number;
684
- namespaceName?: string;
685
- namespaceArn?: string;
686
- ownerAccount?: string;
687
- startTime?: Date;
688
- endTime?: Date;
682
+ nextToken?: string | undefined;
683
+ maxResults?: number | undefined;
684
+ namespaceName?: string | undefined;
685
+ namespaceArn?: string | undefined;
686
+ ownerAccount?: string | undefined;
687
+ startTime?: Date | undefined;
688
+ endTime?: Date | undefined;
689
689
  }
690
690
  export interface ListSnapshotsResponse {
691
- nextToken?: string;
692
- snapshots?: Snapshot[];
691
+ nextToken?: string | undefined;
692
+ snapshots?: Snapshot[] | undefined;
693
693
  }
694
694
  export interface ListTableRestoreStatusRequest {
695
- nextToken?: string;
696
- maxResults?: number;
697
- namespaceName?: string;
698
- workgroupName?: string;
695
+ nextToken?: string | undefined;
696
+ maxResults?: number | undefined;
697
+ namespaceName?: string | undefined;
698
+ workgroupName?: string | undefined;
699
699
  }
700
700
  export interface ListTableRestoreStatusResponse {
701
- nextToken?: string;
702
- tableRestoreStatuses?: TableRestoreStatus[];
701
+ nextToken?: string | undefined;
702
+ tableRestoreStatuses?: TableRestoreStatus[] | undefined;
703
703
  }
704
704
  export interface ListTagsForResourceRequest {
705
705
  resourceArn: string | undefined;
706
706
  }
707
707
  export interface ListTagsForResourceResponse {
708
- tags?: Tag[];
708
+ tags?: Tag[] | undefined;
709
709
  }
710
710
  export interface ListUsageLimitsRequest {
711
- resourceArn?: string;
712
- usageType?: UsageLimitUsageType;
713
- nextToken?: string;
714
- maxResults?: number;
711
+ resourceArn?: string | undefined;
712
+ usageType?: UsageLimitUsageType | undefined;
713
+ nextToken?: string | undefined;
714
+ maxResults?: number | undefined;
715
715
  }
716
716
  export interface ListUsageLimitsResponse {
717
- usageLimits?: UsageLimit[];
718
- nextToken?: string;
717
+ usageLimits?: UsageLimit[] | undefined;
718
+ nextToken?: string | undefined;
719
719
  }
720
720
  export interface ListWorkgroupsRequest {
721
- nextToken?: string;
722
- maxResults?: number;
723
- ownerAccount?: string;
721
+ nextToken?: string | undefined;
722
+ maxResults?: number | undefined;
723
+ ownerAccount?: string | undefined;
724
724
  }
725
725
  export interface ListWorkgroupsResponse {
726
- nextToken?: string;
726
+ nextToken?: string | undefined;
727
727
  workgroups: Workgroup[] | undefined;
728
728
  }
729
729
  export interface UpdateNamespaceRequest {
730
730
  namespaceName: string | undefined;
731
- adminUserPassword?: string;
732
- adminUsername?: string;
733
- kmsKeyId?: string;
734
- defaultIamRoleArn?: string;
735
- iamRoles?: string[];
736
- logExports?: LogExport[];
737
- manageAdminPassword?: boolean;
738
- adminPasswordSecretKmsKeyId?: string;
731
+ adminUserPassword?: string | undefined;
732
+ adminUsername?: string | undefined;
733
+ kmsKeyId?: string | undefined;
734
+ defaultIamRoleArn?: string | undefined;
735
+ iamRoles?: string[] | undefined;
736
+ logExports?: LogExport[] | undefined;
737
+ manageAdminPassword?: boolean | undefined;
738
+ adminPasswordSecretKmsKeyId?: string | undefined;
739
739
  }
740
740
  export interface UpdateNamespaceResponse {
741
741
  namespace: Namespace | undefined;
@@ -745,7 +745,7 @@ export interface PutResourcePolicyRequest {
745
745
  policy: string | undefined;
746
746
  }
747
747
  export interface PutResourcePolicyResponse {
748
- resourcePolicy?: ResourcePolicy;
748
+ resourcePolicy?: ResourcePolicy | undefined;
749
749
  }
750
750
  export interface RestoreFromRecoveryPointRequest {
751
751
  recoveryPointId: string | undefined;
@@ -753,76 +753,76 @@ export interface RestoreFromRecoveryPointRequest {
753
753
  workgroupName: string | undefined;
754
754
  }
755
755
  export interface RestoreFromRecoveryPointResponse {
756
- recoveryPointId?: string;
757
- namespace?: Namespace;
756
+ recoveryPointId?: string | undefined;
757
+ namespace?: Namespace | undefined;
758
758
  }
759
759
  export interface RestoreTableFromRecoveryPointRequest {
760
760
  namespaceName: string | undefined;
761
761
  workgroupName: string | undefined;
762
762
  recoveryPointId: string | undefined;
763
763
  sourceDatabaseName: string | undefined;
764
- sourceSchemaName?: string;
764
+ sourceSchemaName?: string | undefined;
765
765
  sourceTableName: string | undefined;
766
- targetDatabaseName?: string;
767
- targetSchemaName?: string;
766
+ targetDatabaseName?: string | undefined;
767
+ targetSchemaName?: string | undefined;
768
768
  newTableName: string | undefined;
769
- activateCaseSensitiveIdentifier?: boolean;
769
+ activateCaseSensitiveIdentifier?: boolean | undefined;
770
770
  }
771
771
  export interface RestoreTableFromRecoveryPointResponse {
772
- tableRestoreStatus?: TableRestoreStatus;
772
+ tableRestoreStatus?: TableRestoreStatus | undefined;
773
773
  }
774
774
  export interface UpdateScheduledActionRequest {
775
775
  scheduledActionName: string | undefined;
776
- targetAction?: TargetAction;
777
- schedule?: Schedule;
778
- roleArn?: string;
779
- enabled?: boolean;
780
- scheduledActionDescription?: string;
781
- startTime?: Date;
782
- endTime?: Date;
776
+ targetAction?: TargetAction | undefined;
777
+ schedule?: Schedule | undefined;
778
+ roleArn?: string | undefined;
779
+ enabled?: boolean | undefined;
780
+ scheduledActionDescription?: string | undefined;
781
+ startTime?: Date | undefined;
782
+ endTime?: Date | undefined;
783
783
  }
784
784
  export interface UpdateScheduledActionResponse {
785
- scheduledAction?: ScheduledActionResponse;
785
+ scheduledAction?: ScheduledActionResponse | undefined;
786
786
  }
787
787
  export interface RestoreFromSnapshotRequest {
788
788
  namespaceName: string | undefined;
789
789
  workgroupName: string | undefined;
790
- snapshotName?: string;
791
- snapshotArn?: string;
792
- ownerAccount?: string;
793
- manageAdminPassword?: boolean;
794
- adminPasswordSecretKmsKeyId?: string;
790
+ snapshotName?: string | undefined;
791
+ snapshotArn?: string | undefined;
792
+ ownerAccount?: string | undefined;
793
+ manageAdminPassword?: boolean | undefined;
794
+ adminPasswordSecretKmsKeyId?: string | undefined;
795
795
  }
796
796
  export interface RestoreFromSnapshotResponse {
797
- snapshotName?: string;
798
- ownerAccount?: string;
799
- namespace?: Namespace;
797
+ snapshotName?: string | undefined;
798
+ ownerAccount?: string | undefined;
799
+ namespace?: Namespace | undefined;
800
800
  }
801
801
  export interface RestoreTableFromSnapshotRequest {
802
802
  namespaceName: string | undefined;
803
803
  workgroupName: string | undefined;
804
804
  snapshotName: string | undefined;
805
805
  sourceDatabaseName: string | undefined;
806
- sourceSchemaName?: string;
806
+ sourceSchemaName?: string | undefined;
807
807
  sourceTableName: string | undefined;
808
- targetDatabaseName?: string;
809
- targetSchemaName?: string;
808
+ targetDatabaseName?: string | undefined;
809
+ targetSchemaName?: string | undefined;
810
810
  newTableName: string | undefined;
811
- activateCaseSensitiveIdentifier?: boolean;
811
+ activateCaseSensitiveIdentifier?: boolean | undefined;
812
812
  }
813
813
  export interface RestoreTableFromSnapshotResponse {
814
- tableRestoreStatus?: TableRestoreStatus;
814
+ tableRestoreStatus?: TableRestoreStatus | undefined;
815
815
  }
816
816
  export interface UpdateSnapshotRequest {
817
817
  snapshotName: string | undefined;
818
- retentionPeriod?: number;
818
+ retentionPeriod?: number | undefined;
819
819
  }
820
820
  export interface UpdateSnapshotResponse {
821
- snapshot?: Snapshot;
821
+ snapshot?: Snapshot | undefined;
822
822
  }
823
823
  export interface UpdateSnapshotCopyConfigurationRequest {
824
824
  snapshotCopyConfigurationId: string | undefined;
825
- snapshotRetentionPeriod?: number;
825
+ snapshotRetentionPeriod?: number | undefined;
826
826
  }
827
827
  export interface UpdateSnapshotCopyConfigurationResponse {
828
828
  snapshotCopyConfiguration: SnapshotCopyConfiguration | undefined;
@@ -843,31 +843,31 @@ export interface UpdateCustomDomainAssociationRequest {
843
843
  customDomainCertificateArn: string | undefined;
844
844
  }
845
845
  export interface UpdateCustomDomainAssociationResponse {
846
- customDomainName?: string;
847
- workgroupName?: string;
848
- customDomainCertificateArn?: string;
849
- customDomainCertificateExpiryTime?: Date;
846
+ customDomainName?: string | undefined;
847
+ workgroupName?: string | undefined;
848
+ customDomainCertificateArn?: string | undefined;
849
+ customDomainCertificateExpiryTime?: Date | undefined;
850
850
  }
851
851
  export interface UpdateUsageLimitRequest {
852
852
  usageLimitId: string | undefined;
853
- amount?: number;
854
- breachAction?: UsageLimitBreachAction;
853
+ amount?: number | undefined;
854
+ breachAction?: UsageLimitBreachAction | undefined;
855
855
  }
856
856
  export interface UpdateUsageLimitResponse {
857
- usageLimit?: UsageLimit;
857
+ usageLimit?: UsageLimit | undefined;
858
858
  }
859
859
  export interface UpdateWorkgroupRequest {
860
860
  workgroupName: string | undefined;
861
- baseCapacity?: number;
862
- enhancedVpcRouting?: boolean;
863
- configParameters?: ConfigParameter[];
864
- publiclyAccessible?: boolean;
865
- subnetIds?: string[];
866
- securityGroupIds?: string[];
867
- port?: number;
868
- maxCapacity?: number;
869
- ipAddressType?: string;
870
- pricePerformanceTarget?: PerformanceTarget;
861
+ baseCapacity?: number | undefined;
862
+ enhancedVpcRouting?: boolean | undefined;
863
+ configParameters?: ConfigParameter[] | undefined;
864
+ publiclyAccessible?: boolean | undefined;
865
+ subnetIds?: string[] | undefined;
866
+ securityGroupIds?: string[] | undefined;
867
+ port?: number | undefined;
868
+ maxCapacity?: number | undefined;
869
+ ipAddressType?: string | undefined;
870
+ pricePerformanceTarget?: PerformanceTarget | undefined;
871
871
  }
872
872
  export interface UpdateWorkgroupResponse {
873
873
  workgroup: Workgroup | undefined;