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