@aws-sdk/client-dax 3.170.0 → 3.178.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/DAX.d.ts +0 -21
  6. package/dist-types/ts3.4/DAXClient.d.ts +0 -25
  7. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/models/DAXServiceException.d.ts +0 -1
  29. package/dist-types/ts3.4/models/models_0.d.ts +0 -233
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  34. package/package.json +26 -26
@@ -1,19 +1,15 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { DAXServiceException as __BaseException } from "./DAXServiceException";
3
-
4
3
  export declare class ClusterAlreadyExistsFault extends __BaseException {
5
4
  readonly name: "ClusterAlreadyExistsFault";
6
5
  readonly $fault: "client";
7
-
8
6
  constructor(
9
7
  opts: __ExceptionOptionType<ClusterAlreadyExistsFault, __BaseException>
10
8
  );
11
9
  }
12
-
13
10
  export declare class ClusterQuotaForCustomerExceededFault extends __BaseException {
14
11
  readonly name: "ClusterQuotaForCustomerExceededFault";
15
12
  readonly $fault: "client";
16
-
17
13
  constructor(
18
14
  opts: __ExceptionOptionType<
19
15
  ClusterQuotaForCustomerExceededFault,
@@ -25,85 +21,53 @@ export declare enum ClusterEndpointEncryptionType {
25
21
  NONE = "NONE",
26
22
  TLS = "TLS",
27
23
  }
28
-
29
24
  export interface SSESpecification {
30
25
  Enabled: boolean | undefined;
31
26
  }
32
-
33
27
  export interface Tag {
34
28
  Key?: string;
35
-
36
29
  Value?: string;
37
30
  }
38
31
  export interface CreateClusterRequest {
39
32
  ClusterName: string | undefined;
40
-
41
33
  NodeType: string | undefined;
42
-
43
34
  Description?: string;
44
-
45
35
  ReplicationFactor: number | undefined;
46
-
47
36
  AvailabilityZones?: string[];
48
-
49
37
  SubnetGroupName?: string;
50
-
51
38
  SecurityGroupIds?: string[];
52
-
53
39
  PreferredMaintenanceWindow?: string;
54
-
55
40
  NotificationTopicArn?: string;
56
-
57
41
  IamRoleArn: string | undefined;
58
-
59
42
  ParameterGroupName?: string;
60
-
61
43
  Tags?: Tag[];
62
-
63
44
  SSESpecification?: SSESpecification;
64
-
65
45
  ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
66
46
  }
67
-
68
47
  export interface Endpoint {
69
48
  Address?: string;
70
-
71
49
  Port?: number;
72
-
73
50
  URL?: string;
74
51
  }
75
-
76
52
  export interface Node {
77
53
  NodeId?: string;
78
-
79
54
  Endpoint?: Endpoint;
80
-
81
55
  NodeCreateTime?: Date;
82
-
83
56
  AvailabilityZone?: string;
84
-
85
57
  NodeStatus?: string;
86
-
87
58
  ParameterGroupStatus?: string;
88
59
  }
89
-
90
60
  export interface NotificationConfiguration {
91
61
  TopicArn?: string;
92
-
93
62
  TopicStatus?: string;
94
63
  }
95
-
96
64
  export interface ParameterGroupStatus {
97
65
  ParameterGroupName?: string;
98
-
99
66
  ParameterApplyStatus?: string;
100
-
101
67
  NodeIdsToReboot?: string[];
102
68
  }
103
-
104
69
  export interface SecurityGroupMembership {
105
70
  SecurityGroupIdentifier?: string;
106
-
107
71
  Status?: string;
108
72
  }
109
73
  export declare type SSEStatus =
@@ -111,56 +75,35 @@ export declare type SSEStatus =
111
75
  | "DISABLING"
112
76
  | "ENABLED"
113
77
  | "ENABLING";
114
-
115
78
  export interface SSEDescription {
116
79
  Status?: SSEStatus | string;
117
80
  }
118
-
119
81
  export interface Cluster {
120
82
  ClusterName?: string;
121
-
122
83
  Description?: string;
123
-
124
84
  ClusterArn?: string;
125
-
126
85
  TotalNodes?: number;
127
-
128
86
  ActiveNodes?: number;
129
-
130
87
  NodeType?: string;
131
-
132
88
  Status?: string;
133
-
134
89
  ClusterDiscoveryEndpoint?: Endpoint;
135
-
136
90
  NodeIdsToRemove?: string[];
137
-
138
91
  Nodes?: Node[];
139
-
140
92
  PreferredMaintenanceWindow?: string;
141
-
142
93
  NotificationConfiguration?: NotificationConfiguration;
143
-
144
94
  SubnetGroup?: string;
145
-
146
95
  SecurityGroups?: SecurityGroupMembership[];
147
-
148
96
  IamRoleArn?: string;
149
-
150
97
  ParameterGroup?: ParameterGroupStatus;
151
-
152
98
  SSEDescription?: SSEDescription;
153
-
154
99
  ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
155
100
  }
156
101
  export interface CreateClusterResponse {
157
102
  Cluster?: Cluster;
158
103
  }
159
-
160
104
  export declare class InsufficientClusterCapacityFault extends __BaseException {
161
105
  readonly name: "InsufficientClusterCapacityFault";
162
106
  readonly $fault: "client";
163
-
164
107
  constructor(
165
108
  opts: __ExceptionOptionType<
166
109
  InsufficientClusterCapacityFault,
@@ -168,20 +111,16 @@ export declare class InsufficientClusterCapacityFault extends __BaseException {
168
111
  >
169
112
  );
170
113
  }
171
-
172
114
  export declare class InvalidClusterStateFault extends __BaseException {
173
115
  readonly name: "InvalidClusterStateFault";
174
116
  readonly $fault: "client";
175
-
176
117
  constructor(
177
118
  opts: __ExceptionOptionType<InvalidClusterStateFault, __BaseException>
178
119
  );
179
120
  }
180
-
181
121
  export declare class InvalidParameterCombinationException extends __BaseException {
182
122
  readonly name: "InvalidParameterCombinationException";
183
123
  readonly $fault: "client";
184
-
185
124
  constructor(
186
125
  opts: __ExceptionOptionType<
187
126
  InvalidParameterCombinationException,
@@ -189,11 +128,9 @@ export declare class InvalidParameterCombinationException extends __BaseExceptio
189
128
  >
190
129
  );
191
130
  }
192
-
193
131
  export declare class InvalidParameterGroupStateFault extends __BaseException {
194
132
  readonly name: "InvalidParameterGroupStateFault";
195
133
  readonly $fault: "client";
196
-
197
134
  constructor(
198
135
  opts: __ExceptionOptionType<
199
136
  InvalidParameterGroupStateFault,
@@ -201,29 +138,23 @@ export declare class InvalidParameterGroupStateFault extends __BaseException {
201
138
  >
202
139
  );
203
140
  }
204
-
205
141
  export declare class InvalidParameterValueException extends __BaseException {
206
142
  readonly name: "InvalidParameterValueException";
207
143
  readonly $fault: "client";
208
-
209
144
  constructor(
210
145
  opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
211
146
  );
212
147
  }
213
-
214
148
  export declare class InvalidVPCNetworkStateFault extends __BaseException {
215
149
  readonly name: "InvalidVPCNetworkStateFault";
216
150
  readonly $fault: "client";
217
-
218
151
  constructor(
219
152
  opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>
220
153
  );
221
154
  }
222
-
223
155
  export declare class NodeQuotaForClusterExceededFault extends __BaseException {
224
156
  readonly name: "NodeQuotaForClusterExceededFault";
225
157
  readonly $fault: "client";
226
-
227
158
  constructor(
228
159
  opts: __ExceptionOptionType<
229
160
  NodeQuotaForClusterExceededFault,
@@ -231,11 +162,9 @@ export declare class NodeQuotaForClusterExceededFault extends __BaseException {
231
162
  >
232
163
  );
233
164
  }
234
-
235
165
  export declare class NodeQuotaForCustomerExceededFault extends __BaseException {
236
166
  readonly name: "NodeQuotaForCustomerExceededFault";
237
167
  readonly $fault: "client";
238
-
239
168
  constructor(
240
169
  opts: __ExceptionOptionType<
241
170
  NodeQuotaForCustomerExceededFault,
@@ -243,70 +172,55 @@ export declare class NodeQuotaForCustomerExceededFault extends __BaseException {
243
172
  >
244
173
  );
245
174
  }
246
-
247
175
  export declare class ParameterGroupNotFoundFault extends __BaseException {
248
176
  readonly name: "ParameterGroupNotFoundFault";
249
177
  readonly $fault: "client";
250
-
251
178
  constructor(
252
179
  opts: __ExceptionOptionType<ParameterGroupNotFoundFault, __BaseException>
253
180
  );
254
181
  }
255
-
256
182
  export declare class ServiceLinkedRoleNotFoundFault extends __BaseException {
257
183
  readonly name: "ServiceLinkedRoleNotFoundFault";
258
184
  readonly $fault: "client";
259
-
260
185
  constructor(
261
186
  opts: __ExceptionOptionType<ServiceLinkedRoleNotFoundFault, __BaseException>
262
187
  );
263
188
  }
264
-
265
189
  export declare class ServiceQuotaExceededException extends __BaseException {
266
190
  readonly name: "ServiceQuotaExceededException";
267
191
  readonly $fault: "client";
268
-
269
192
  constructor(
270
193
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
271
194
  );
272
195
  }
273
-
274
196
  export declare class SubnetGroupNotFoundFault extends __BaseException {
275
197
  readonly name: "SubnetGroupNotFoundFault";
276
198
  readonly $fault: "client";
277
-
278
199
  constructor(
279
200
  opts: __ExceptionOptionType<SubnetGroupNotFoundFault, __BaseException>
280
201
  );
281
202
  }
282
-
283
203
  export declare class TagQuotaPerResourceExceeded extends __BaseException {
284
204
  readonly name: "TagQuotaPerResourceExceeded";
285
205
  readonly $fault: "client";
286
-
287
206
  constructor(
288
207
  opts: __ExceptionOptionType<TagQuotaPerResourceExceeded, __BaseException>
289
208
  );
290
209
  }
291
210
  export interface CreateParameterGroupRequest {
292
211
  ParameterGroupName: string | undefined;
293
-
294
212
  Description?: string;
295
213
  }
296
-
297
214
  export interface ParameterGroup {
298
215
  ParameterGroupName?: string;
299
-
300
216
  Description?: string;
301
217
  }
302
218
  export interface CreateParameterGroupResponse {
303
219
  ParameterGroup?: ParameterGroup;
304
220
  }
305
-
306
221
  export declare class ParameterGroupAlreadyExistsFault extends __BaseException {
307
222
  readonly name: "ParameterGroupAlreadyExistsFault";
308
223
  readonly $fault: "client";
309
-
310
224
  constructor(
311
225
  opts: __ExceptionOptionType<
312
226
  ParameterGroupAlreadyExistsFault,
@@ -314,11 +228,9 @@ export declare class ParameterGroupAlreadyExistsFault extends __BaseException {
314
228
  >
315
229
  );
316
230
  }
317
-
318
231
  export declare class ParameterGroupQuotaExceededFault extends __BaseException {
319
232
  readonly name: "ParameterGroupQuotaExceededFault";
320
233
  readonly $fault: "client";
321
-
322
234
  constructor(
323
235
  opts: __ExceptionOptionType<
324
236
  ParameterGroupQuotaExceededFault,
@@ -328,90 +240,67 @@ export declare class ParameterGroupQuotaExceededFault extends __BaseException {
328
240
  }
329
241
  export interface CreateSubnetGroupRequest {
330
242
  SubnetGroupName: string | undefined;
331
-
332
243
  Description?: string;
333
-
334
244
  SubnetIds: string[] | undefined;
335
245
  }
336
-
337
246
  export interface Subnet {
338
247
  SubnetIdentifier?: string;
339
-
340
248
  SubnetAvailabilityZone?: string;
341
249
  }
342
-
343
250
  export interface SubnetGroup {
344
251
  SubnetGroupName?: string;
345
-
346
252
  Description?: string;
347
-
348
253
  VpcId?: string;
349
-
350
254
  Subnets?: Subnet[];
351
255
  }
352
256
  export interface CreateSubnetGroupResponse {
353
257
  SubnetGroup?: SubnetGroup;
354
258
  }
355
-
356
259
  export declare class InvalidSubnet extends __BaseException {
357
260
  readonly name: "InvalidSubnet";
358
261
  readonly $fault: "client";
359
-
360
262
  constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
361
263
  }
362
-
363
264
  export declare class SubnetGroupAlreadyExistsFault extends __BaseException {
364
265
  readonly name: "SubnetGroupAlreadyExistsFault";
365
266
  readonly $fault: "client";
366
-
367
267
  constructor(
368
268
  opts: __ExceptionOptionType<SubnetGroupAlreadyExistsFault, __BaseException>
369
269
  );
370
270
  }
371
-
372
271
  export declare class SubnetGroupQuotaExceededFault extends __BaseException {
373
272
  readonly name: "SubnetGroupQuotaExceededFault";
374
273
  readonly $fault: "client";
375
-
376
274
  constructor(
377
275
  opts: __ExceptionOptionType<SubnetGroupQuotaExceededFault, __BaseException>
378
276
  );
379
277
  }
380
-
381
278
  export declare class SubnetQuotaExceededFault extends __BaseException {
382
279
  readonly name: "SubnetQuotaExceededFault";
383
280
  readonly $fault: "client";
384
-
385
281
  constructor(
386
282
  opts: __ExceptionOptionType<SubnetQuotaExceededFault, __BaseException>
387
283
  );
388
284
  }
389
-
390
285
  export declare class ClusterNotFoundFault extends __BaseException {
391
286
  readonly name: "ClusterNotFoundFault";
392
287
  readonly $fault: "client";
393
-
394
288
  constructor(
395
289
  opts: __ExceptionOptionType<ClusterNotFoundFault, __BaseException>
396
290
  );
397
291
  }
398
292
  export interface DecreaseReplicationFactorRequest {
399
293
  ClusterName: string | undefined;
400
-
401
294
  NewReplicationFactor: number | undefined;
402
-
403
295
  AvailabilityZones?: string[];
404
-
405
296
  NodeIdsToRemove?: string[];
406
297
  }
407
298
  export interface DecreaseReplicationFactorResponse {
408
299
  Cluster?: Cluster;
409
300
  }
410
-
411
301
  export declare class NodeNotFoundFault extends __BaseException {
412
302
  readonly name: "NodeNotFoundFault";
413
303
  readonly $fault: "client";
414
-
415
304
  constructor(opts: __ExceptionOptionType<NodeNotFoundFault, __BaseException>);
416
305
  }
417
306
  export interface DeleteClusterRequest {
@@ -432,167 +321,120 @@ export interface DeleteSubnetGroupRequest {
432
321
  export interface DeleteSubnetGroupResponse {
433
322
  DeletionMessage?: string;
434
323
  }
435
-
436
324
  export declare class SubnetGroupInUseFault extends __BaseException {
437
325
  readonly name: "SubnetGroupInUseFault";
438
326
  readonly $fault: "client";
439
-
440
327
  constructor(
441
328
  opts: __ExceptionOptionType<SubnetGroupInUseFault, __BaseException>
442
329
  );
443
330
  }
444
331
  export interface DescribeClustersRequest {
445
332
  ClusterNames?: string[];
446
-
447
333
  MaxResults?: number;
448
-
449
334
  NextToken?: string;
450
335
  }
451
336
  export interface DescribeClustersResponse {
452
337
  NextToken?: string;
453
-
454
338
  Clusters?: Cluster[];
455
339
  }
456
340
  export interface DescribeDefaultParametersRequest {
457
341
  MaxResults?: number;
458
-
459
342
  NextToken?: string;
460
343
  }
461
344
  export declare type ChangeType = "IMMEDIATE" | "REQUIRES_REBOOT";
462
345
  export declare type IsModifiable = "CONDITIONAL" | "FALSE" | "TRUE";
463
-
464
346
  export interface NodeTypeSpecificValue {
465
347
  NodeType?: string;
466
-
467
348
  Value?: string;
468
349
  }
469
350
  export declare type ParameterType = "DEFAULT" | "NODE_TYPE_SPECIFIC";
470
-
471
351
  export interface Parameter {
472
352
  ParameterName?: string;
473
-
474
353
  ParameterType?: ParameterType | string;
475
-
476
354
  ParameterValue?: string;
477
-
478
355
  NodeTypeSpecificValues?: NodeTypeSpecificValue[];
479
-
480
356
  Description?: string;
481
-
482
357
  Source?: string;
483
-
484
358
  DataType?: string;
485
-
486
359
  AllowedValues?: string;
487
-
488
360
  IsModifiable?: IsModifiable | string;
489
-
490
361
  ChangeType?: ChangeType | string;
491
362
  }
492
363
  export interface DescribeDefaultParametersResponse {
493
364
  NextToken?: string;
494
-
495
365
  Parameters?: Parameter[];
496
366
  }
497
367
  export declare type SourceType = "CLUSTER" | "PARAMETER_GROUP" | "SUBNET_GROUP";
498
368
  export interface DescribeEventsRequest {
499
369
  SourceName?: string;
500
-
501
370
  SourceType?: SourceType | string;
502
-
503
371
  StartTime?: Date;
504
-
505
372
  EndTime?: Date;
506
-
507
373
  Duration?: number;
508
-
509
374
  MaxResults?: number;
510
-
511
375
  NextToken?: string;
512
376
  }
513
-
514
377
  export interface Event {
515
378
  SourceName?: string;
516
-
517
379
  SourceType?: SourceType | string;
518
-
519
380
  Message?: string;
520
-
521
381
  Date?: Date;
522
382
  }
523
383
  export interface DescribeEventsResponse {
524
384
  NextToken?: string;
525
-
526
385
  Events?: Event[];
527
386
  }
528
387
  export interface DescribeParameterGroupsRequest {
529
388
  ParameterGroupNames?: string[];
530
-
531
389
  MaxResults?: number;
532
-
533
390
  NextToken?: string;
534
391
  }
535
392
  export interface DescribeParameterGroupsResponse {
536
393
  NextToken?: string;
537
-
538
394
  ParameterGroups?: ParameterGroup[];
539
395
  }
540
396
  export interface DescribeParametersRequest {
541
397
  ParameterGroupName: string | undefined;
542
-
543
398
  Source?: string;
544
-
545
399
  MaxResults?: number;
546
-
547
400
  NextToken?: string;
548
401
  }
549
402
  export interface DescribeParametersResponse {
550
403
  NextToken?: string;
551
-
552
404
  Parameters?: Parameter[];
553
405
  }
554
406
  export interface DescribeSubnetGroupsRequest {
555
407
  SubnetGroupNames?: string[];
556
-
557
408
  MaxResults?: number;
558
-
559
409
  NextToken?: string;
560
410
  }
561
411
  export interface DescribeSubnetGroupsResponse {
562
412
  NextToken?: string;
563
-
564
413
  SubnetGroups?: SubnetGroup[];
565
414
  }
566
415
  export interface IncreaseReplicationFactorRequest {
567
416
  ClusterName: string | undefined;
568
-
569
417
  NewReplicationFactor: number | undefined;
570
-
571
418
  AvailabilityZones?: string[];
572
419
  }
573
420
  export interface IncreaseReplicationFactorResponse {
574
421
  Cluster?: Cluster;
575
422
  }
576
-
577
423
  export declare class InvalidARNFault extends __BaseException {
578
424
  readonly name: "InvalidARNFault";
579
425
  readonly $fault: "client";
580
-
581
426
  constructor(opts: __ExceptionOptionType<InvalidARNFault, __BaseException>);
582
427
  }
583
428
  export interface ListTagsRequest {
584
429
  ResourceName: string | undefined;
585
-
586
430
  NextToken?: string;
587
431
  }
588
432
  export interface ListTagsResponse {
589
433
  Tags?: Tag[];
590
-
591
434
  NextToken?: string;
592
435
  }
593
436
  export interface RebootNodeRequest {
594
437
  ClusterName: string | undefined;
595
-
596
438
  NodeId: string | undefined;
597
439
  }
598
440
  export interface RebootNodeResponse {
@@ -600,22 +442,18 @@ export interface RebootNodeResponse {
600
442
  }
601
443
  export interface TagResourceRequest {
602
444
  ResourceName: string | undefined;
603
-
604
445
  Tags: Tag[] | undefined;
605
446
  }
606
447
  export interface TagResourceResponse {
607
448
  Tags?: Tag[];
608
449
  }
609
-
610
450
  export declare class TagNotFoundFault extends __BaseException {
611
451
  readonly name: "TagNotFoundFault";
612
452
  readonly $fault: "client";
613
-
614
453
  constructor(opts: __ExceptionOptionType<TagNotFoundFault, __BaseException>);
615
454
  }
616
455
  export interface UntagResourceRequest {
617
456
  ResourceName: string | undefined;
618
-
619
457
  TagKeys: string[] | undefined;
620
458
  }
621
459
  export interface UntagResourceResponse {
@@ -623,266 +461,195 @@ export interface UntagResourceResponse {
623
461
  }
624
462
  export interface UpdateClusterRequest {
625
463
  ClusterName: string | undefined;
626
-
627
464
  Description?: string;
628
-
629
465
  PreferredMaintenanceWindow?: string;
630
-
631
466
  NotificationTopicArn?: string;
632
-
633
467
  NotificationTopicStatus?: string;
634
-
635
468
  ParameterGroupName?: string;
636
-
637
469
  SecurityGroupIds?: string[];
638
470
  }
639
471
  export interface UpdateClusterResponse {
640
472
  Cluster?: Cluster;
641
473
  }
642
-
643
474
  export interface ParameterNameValue {
644
475
  ParameterName?: string;
645
-
646
476
  ParameterValue?: string;
647
477
  }
648
478
  export interface UpdateParameterGroupRequest {
649
479
  ParameterGroupName: string | undefined;
650
-
651
480
  ParameterNameValues: ParameterNameValue[] | undefined;
652
481
  }
653
482
  export interface UpdateParameterGroupResponse {
654
483
  ParameterGroup?: ParameterGroup;
655
484
  }
656
-
657
485
  export declare class SubnetInUse extends __BaseException {
658
486
  readonly name: "SubnetInUse";
659
487
  readonly $fault: "client";
660
-
661
488
  constructor(opts: __ExceptionOptionType<SubnetInUse, __BaseException>);
662
489
  }
663
490
  export interface UpdateSubnetGroupRequest {
664
491
  SubnetGroupName: string | undefined;
665
-
666
492
  Description?: string;
667
-
668
493
  SubnetIds?: string[];
669
494
  }
670
495
  export interface UpdateSubnetGroupResponse {
671
496
  SubnetGroup?: SubnetGroup;
672
497
  }
673
-
674
498
  export declare const SSESpecificationFilterSensitiveLog: (
675
499
  obj: SSESpecification
676
500
  ) => any;
677
-
678
501
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
679
-
680
502
  export declare const CreateClusterRequestFilterSensitiveLog: (
681
503
  obj: CreateClusterRequest
682
504
  ) => any;
683
-
684
505
  export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
685
-
686
506
  export declare const NodeFilterSensitiveLog: (obj: Node) => any;
687
-
688
507
  export declare const NotificationConfigurationFilterSensitiveLog: (
689
508
  obj: NotificationConfiguration
690
509
  ) => any;
691
-
692
510
  export declare const ParameterGroupStatusFilterSensitiveLog: (
693
511
  obj: ParameterGroupStatus
694
512
  ) => any;
695
-
696
513
  export declare const SecurityGroupMembershipFilterSensitiveLog: (
697
514
  obj: SecurityGroupMembership
698
515
  ) => any;
699
-
700
516
  export declare const SSEDescriptionFilterSensitiveLog: (
701
517
  obj: SSEDescription
702
518
  ) => any;
703
-
704
519
  export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
705
-
706
520
  export declare const CreateClusterResponseFilterSensitiveLog: (
707
521
  obj: CreateClusterResponse
708
522
  ) => any;
709
-
710
523
  export declare const CreateParameterGroupRequestFilterSensitiveLog: (
711
524
  obj: CreateParameterGroupRequest
712
525
  ) => any;
713
-
714
526
  export declare const ParameterGroupFilterSensitiveLog: (
715
527
  obj: ParameterGroup
716
528
  ) => any;
717
-
718
529
  export declare const CreateParameterGroupResponseFilterSensitiveLog: (
719
530
  obj: CreateParameterGroupResponse
720
531
  ) => any;
721
-
722
532
  export declare const CreateSubnetGroupRequestFilterSensitiveLog: (
723
533
  obj: CreateSubnetGroupRequest
724
534
  ) => any;
725
-
726
535
  export declare const SubnetFilterSensitiveLog: (obj: Subnet) => any;
727
-
728
536
  export declare const SubnetGroupFilterSensitiveLog: (obj: SubnetGroup) => any;
729
-
730
537
  export declare const CreateSubnetGroupResponseFilterSensitiveLog: (
731
538
  obj: CreateSubnetGroupResponse
732
539
  ) => any;
733
-
734
540
  export declare const DecreaseReplicationFactorRequestFilterSensitiveLog: (
735
541
  obj: DecreaseReplicationFactorRequest
736
542
  ) => any;
737
-
738
543
  export declare const DecreaseReplicationFactorResponseFilterSensitiveLog: (
739
544
  obj: DecreaseReplicationFactorResponse
740
545
  ) => any;
741
-
742
546
  export declare const DeleteClusterRequestFilterSensitiveLog: (
743
547
  obj: DeleteClusterRequest
744
548
  ) => any;
745
-
746
549
  export declare const DeleteClusterResponseFilterSensitiveLog: (
747
550
  obj: DeleteClusterResponse
748
551
  ) => any;
749
-
750
552
  export declare const DeleteParameterGroupRequestFilterSensitiveLog: (
751
553
  obj: DeleteParameterGroupRequest
752
554
  ) => any;
753
-
754
555
  export declare const DeleteParameterGroupResponseFilterSensitiveLog: (
755
556
  obj: DeleteParameterGroupResponse
756
557
  ) => any;
757
-
758
558
  export declare const DeleteSubnetGroupRequestFilterSensitiveLog: (
759
559
  obj: DeleteSubnetGroupRequest
760
560
  ) => any;
761
-
762
561
  export declare const DeleteSubnetGroupResponseFilterSensitiveLog: (
763
562
  obj: DeleteSubnetGroupResponse
764
563
  ) => any;
765
-
766
564
  export declare const DescribeClustersRequestFilterSensitiveLog: (
767
565
  obj: DescribeClustersRequest
768
566
  ) => any;
769
-
770
567
  export declare const DescribeClustersResponseFilterSensitiveLog: (
771
568
  obj: DescribeClustersResponse
772
569
  ) => any;
773
-
774
570
  export declare const DescribeDefaultParametersRequestFilterSensitiveLog: (
775
571
  obj: DescribeDefaultParametersRequest
776
572
  ) => any;
777
-
778
573
  export declare const NodeTypeSpecificValueFilterSensitiveLog: (
779
574
  obj: NodeTypeSpecificValue
780
575
  ) => any;
781
-
782
576
  export declare const ParameterFilterSensitiveLog: (obj: Parameter) => any;
783
-
784
577
  export declare const DescribeDefaultParametersResponseFilterSensitiveLog: (
785
578
  obj: DescribeDefaultParametersResponse
786
579
  ) => any;
787
-
788
580
  export declare const DescribeEventsRequestFilterSensitiveLog: (
789
581
  obj: DescribeEventsRequest
790
582
  ) => any;
791
-
792
583
  export declare const EventFilterSensitiveLog: (obj: Event) => any;
793
-
794
584
  export declare const DescribeEventsResponseFilterSensitiveLog: (
795
585
  obj: DescribeEventsResponse
796
586
  ) => any;
797
-
798
587
  export declare const DescribeParameterGroupsRequestFilterSensitiveLog: (
799
588
  obj: DescribeParameterGroupsRequest
800
589
  ) => any;
801
-
802
590
  export declare const DescribeParameterGroupsResponseFilterSensitiveLog: (
803
591
  obj: DescribeParameterGroupsResponse
804
592
  ) => any;
805
-
806
593
  export declare const DescribeParametersRequestFilterSensitiveLog: (
807
594
  obj: DescribeParametersRequest
808
595
  ) => any;
809
-
810
596
  export declare const DescribeParametersResponseFilterSensitiveLog: (
811
597
  obj: DescribeParametersResponse
812
598
  ) => any;
813
-
814
599
  export declare const DescribeSubnetGroupsRequestFilterSensitiveLog: (
815
600
  obj: DescribeSubnetGroupsRequest
816
601
  ) => any;
817
-
818
602
  export declare const DescribeSubnetGroupsResponseFilterSensitiveLog: (
819
603
  obj: DescribeSubnetGroupsResponse
820
604
  ) => any;
821
-
822
605
  export declare const IncreaseReplicationFactorRequestFilterSensitiveLog: (
823
606
  obj: IncreaseReplicationFactorRequest
824
607
  ) => any;
825
-
826
608
  export declare const IncreaseReplicationFactorResponseFilterSensitiveLog: (
827
609
  obj: IncreaseReplicationFactorResponse
828
610
  ) => any;
829
-
830
611
  export declare const ListTagsRequestFilterSensitiveLog: (
831
612
  obj: ListTagsRequest
832
613
  ) => any;
833
-
834
614
  export declare const ListTagsResponseFilterSensitiveLog: (
835
615
  obj: ListTagsResponse
836
616
  ) => any;
837
-
838
617
  export declare const RebootNodeRequestFilterSensitiveLog: (
839
618
  obj: RebootNodeRequest
840
619
  ) => any;
841
-
842
620
  export declare const RebootNodeResponseFilterSensitiveLog: (
843
621
  obj: RebootNodeResponse
844
622
  ) => any;
845
-
846
623
  export declare const TagResourceRequestFilterSensitiveLog: (
847
624
  obj: TagResourceRequest
848
625
  ) => any;
849
-
850
626
  export declare const TagResourceResponseFilterSensitiveLog: (
851
627
  obj: TagResourceResponse
852
628
  ) => any;
853
-
854
629
  export declare const UntagResourceRequestFilterSensitiveLog: (
855
630
  obj: UntagResourceRequest
856
631
  ) => any;
857
-
858
632
  export declare const UntagResourceResponseFilterSensitiveLog: (
859
633
  obj: UntagResourceResponse
860
634
  ) => any;
861
-
862
635
  export declare const UpdateClusterRequestFilterSensitiveLog: (
863
636
  obj: UpdateClusterRequest
864
637
  ) => any;
865
-
866
638
  export declare const UpdateClusterResponseFilterSensitiveLog: (
867
639
  obj: UpdateClusterResponse
868
640
  ) => any;
869
-
870
641
  export declare const ParameterNameValueFilterSensitiveLog: (
871
642
  obj: ParameterNameValue
872
643
  ) => any;
873
-
874
644
  export declare const UpdateParameterGroupRequestFilterSensitiveLog: (
875
645
  obj: UpdateParameterGroupRequest
876
646
  ) => any;
877
-
878
647
  export declare const UpdateParameterGroupResponseFilterSensitiveLog: (
879
648
  obj: UpdateParameterGroupResponse
880
649
  ) => any;
881
-
882
650
  export declare const UpdateSubnetGroupRequestFilterSensitiveLog: (
883
651
  obj: UpdateSubnetGroupRequest
884
652
  ) => any;
885
-
886
653
  export declare const UpdateSubnetGroupResponseFilterSensitiveLog: (
887
654
  obj: UpdateSubnetGroupResponse
888
655
  ) => any;