@aws-sdk/client-dax 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/DAX.d.ts +361 -110
  3. package/dist-types/ts3.4/DAXClient.d.ts +229 -94
  4. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +39 -17
  24. package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +36 -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 +7 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +655 -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 +65 -38
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  36. package/package.json +34 -34
@@ -1,774 +1,655 @@
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
+ export declare class ClusterAlreadyExistsFault extends __BaseException {
4
+ readonly name: "ClusterAlreadyExistsFault";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<ClusterAlreadyExistsFault, __BaseException>
8
+ );
9
+ }
10
+ export declare class ClusterQuotaForCustomerExceededFault extends __BaseException {
11
+ readonly name: "ClusterQuotaForCustomerExceededFault";
12
+ readonly $fault: "client";
13
+ constructor(
14
+ opts: __ExceptionOptionType<
15
+ ClusterQuotaForCustomerExceededFault,
16
+ __BaseException
17
+ >
18
+ );
19
+ }
20
+ export declare enum ClusterEndpointEncryptionType {
21
+ NONE = "NONE",
22
+ TLS = "TLS",
23
+ }
24
+ export interface SSESpecification {
25
+ Enabled: boolean | undefined;
26
+ }
27
+ export interface Tag {
28
+ Key?: string;
29
+ Value?: string;
30
+ }
31
+ export interface CreateClusterRequest {
32
+ ClusterName: string | undefined;
33
+ NodeType: string | undefined;
34
+ Description?: string;
35
+ ReplicationFactor: number | undefined;
36
+ AvailabilityZones?: string[];
37
+ SubnetGroupName?: string;
38
+ SecurityGroupIds?: string[];
39
+ PreferredMaintenanceWindow?: string;
40
+ NotificationTopicArn?: string;
41
+ IamRoleArn: string | undefined;
42
+ ParameterGroupName?: string;
43
+ Tags?: Tag[];
44
+ SSESpecification?: SSESpecification;
45
+ ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
46
+ }
47
+ export interface Endpoint {
48
+ Address?: string;
49
+ Port?: number;
50
+ URL?: string;
51
+ }
52
+ export interface Node {
53
+ NodeId?: string;
54
+ Endpoint?: Endpoint;
55
+ NodeCreateTime?: Date;
56
+ AvailabilityZone?: string;
57
+ NodeStatus?: string;
58
+ ParameterGroupStatus?: string;
59
+ }
60
+ export interface NotificationConfiguration {
61
+ TopicArn?: string;
62
+ TopicStatus?: string;
63
+ }
64
+ export interface ParameterGroupStatus {
65
+ ParameterGroupName?: string;
66
+ ParameterApplyStatus?: string;
67
+ NodeIdsToReboot?: string[];
68
+ }
69
+ export interface SecurityGroupMembership {
70
+ SecurityGroupIdentifier?: string;
71
+ Status?: string;
72
+ }
73
+ export declare type SSEStatus =
74
+ | "DISABLED"
75
+ | "DISABLING"
76
+ | "ENABLED"
77
+ | "ENABLING";
78
+ export interface SSEDescription {
79
+ Status?: SSEStatus | string;
80
+ }
81
+ export interface Cluster {
82
+ ClusterName?: string;
83
+ Description?: string;
84
+ ClusterArn?: string;
85
+ TotalNodes?: number;
86
+ ActiveNodes?: number;
87
+ NodeType?: string;
88
+ Status?: string;
89
+ ClusterDiscoveryEndpoint?: Endpoint;
90
+ NodeIdsToRemove?: string[];
91
+ Nodes?: Node[];
92
+ PreferredMaintenanceWindow?: string;
93
+ NotificationConfiguration?: NotificationConfiguration;
94
+ SubnetGroup?: string;
95
+ SecurityGroups?: SecurityGroupMembership[];
96
+ IamRoleArn?: string;
97
+ ParameterGroup?: ParameterGroupStatus;
98
+ SSEDescription?: SSEDescription;
99
+ ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
100
+ }
101
+ export interface CreateClusterResponse {
102
+ Cluster?: Cluster;
103
+ }
104
+ export declare class InsufficientClusterCapacityFault extends __BaseException {
105
+ readonly name: "InsufficientClusterCapacityFault";
106
+ readonly $fault: "client";
107
+ constructor(
108
+ opts: __ExceptionOptionType<
109
+ InsufficientClusterCapacityFault,
110
+ __BaseException
111
+ >
112
+ );
113
+ }
114
+ export declare class InvalidClusterStateFault extends __BaseException {
115
+ readonly name: "InvalidClusterStateFault";
116
+ readonly $fault: "client";
117
+ constructor(
118
+ opts: __ExceptionOptionType<InvalidClusterStateFault, __BaseException>
119
+ );
120
+ }
121
+ export declare class InvalidParameterCombinationException extends __BaseException {
122
+ readonly name: "InvalidParameterCombinationException";
123
+ readonly $fault: "client";
124
+ constructor(
125
+ opts: __ExceptionOptionType<
126
+ InvalidParameterCombinationException,
127
+ __BaseException
128
+ >
129
+ );
130
+ }
131
+ export declare class InvalidParameterGroupStateFault extends __BaseException {
132
+ readonly name: "InvalidParameterGroupStateFault";
133
+ readonly $fault: "client";
134
+ constructor(
135
+ opts: __ExceptionOptionType<
136
+ InvalidParameterGroupStateFault,
137
+ __BaseException
138
+ >
139
+ );
140
+ }
141
+ export declare class InvalidParameterValueException extends __BaseException {
142
+ readonly name: "InvalidParameterValueException";
143
+ readonly $fault: "client";
144
+ constructor(
145
+ opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
146
+ );
147
+ }
148
+ export declare class InvalidVPCNetworkStateFault extends __BaseException {
149
+ readonly name: "InvalidVPCNetworkStateFault";
150
+ readonly $fault: "client";
151
+ constructor(
152
+ opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>
153
+ );
154
+ }
155
+ export declare class NodeQuotaForClusterExceededFault extends __BaseException {
156
+ readonly name: "NodeQuotaForClusterExceededFault";
157
+ readonly $fault: "client";
158
+ constructor(
159
+ opts: __ExceptionOptionType<
160
+ NodeQuotaForClusterExceededFault,
161
+ __BaseException
162
+ >
163
+ );
164
+ }
165
+ export declare class NodeQuotaForCustomerExceededFault extends __BaseException {
166
+ readonly name: "NodeQuotaForCustomerExceededFault";
167
+ readonly $fault: "client";
168
+ constructor(
169
+ opts: __ExceptionOptionType<
170
+ NodeQuotaForCustomerExceededFault,
171
+ __BaseException
172
+ >
173
+ );
174
+ }
175
+ export declare class ParameterGroupNotFoundFault extends __BaseException {
176
+ readonly name: "ParameterGroupNotFoundFault";
177
+ readonly $fault: "client";
178
+ constructor(
179
+ opts: __ExceptionOptionType<ParameterGroupNotFoundFault, __BaseException>
180
+ );
181
+ }
182
+ export declare class ServiceLinkedRoleNotFoundFault extends __BaseException {
183
+ readonly name: "ServiceLinkedRoleNotFoundFault";
184
+ readonly $fault: "client";
185
+ constructor(
186
+ opts: __ExceptionOptionType<ServiceLinkedRoleNotFoundFault, __BaseException>
187
+ );
188
+ }
189
+ export declare class ServiceQuotaExceededException extends __BaseException {
190
+ readonly name: "ServiceQuotaExceededException";
191
+ readonly $fault: "client";
192
+ constructor(
193
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
194
+ );
195
+ }
196
+ export declare class SubnetGroupNotFoundFault extends __BaseException {
197
+ readonly name: "SubnetGroupNotFoundFault";
198
+ readonly $fault: "client";
199
+ constructor(
200
+ opts: __ExceptionOptionType<SubnetGroupNotFoundFault, __BaseException>
201
+ );
202
+ }
203
+ export declare class TagQuotaPerResourceExceeded extends __BaseException {
204
+ readonly name: "TagQuotaPerResourceExceeded";
205
+ readonly $fault: "client";
206
+ constructor(
207
+ opts: __ExceptionOptionType<TagQuotaPerResourceExceeded, __BaseException>
208
+ );
209
+ }
210
+ export interface CreateParameterGroupRequest {
211
+ ParameterGroupName: string | undefined;
212
+ Description?: string;
213
+ }
214
+ export interface ParameterGroup {
215
+ ParameterGroupName?: string;
216
+ Description?: string;
217
+ }
218
+ export interface CreateParameterGroupResponse {
219
+ ParameterGroup?: ParameterGroup;
220
+ }
221
+ export declare class ParameterGroupAlreadyExistsFault extends __BaseException {
222
+ readonly name: "ParameterGroupAlreadyExistsFault";
223
+ readonly $fault: "client";
224
+ constructor(
225
+ opts: __ExceptionOptionType<
226
+ ParameterGroupAlreadyExistsFault,
227
+ __BaseException
228
+ >
229
+ );
230
+ }
231
+ export declare class ParameterGroupQuotaExceededFault extends __BaseException {
232
+ readonly name: "ParameterGroupQuotaExceededFault";
233
+ readonly $fault: "client";
234
+ constructor(
235
+ opts: __ExceptionOptionType<
236
+ ParameterGroupQuotaExceededFault,
237
+ __BaseException
238
+ >
239
+ );
240
+ }
241
+ export interface CreateSubnetGroupRequest {
242
+ SubnetGroupName: string | undefined;
243
+ Description?: string;
244
+ SubnetIds: string[] | undefined;
245
+ }
246
+ export interface Subnet {
247
+ SubnetIdentifier?: string;
248
+ SubnetAvailabilityZone?: string;
249
+ }
250
+ export interface SubnetGroup {
251
+ SubnetGroupName?: string;
252
+ Description?: string;
253
+ VpcId?: string;
254
+ Subnets?: Subnet[];
255
+ }
256
+ export interface CreateSubnetGroupResponse {
257
+ SubnetGroup?: SubnetGroup;
258
+ }
259
+ export declare class InvalidSubnet extends __BaseException {
260
+ readonly name: "InvalidSubnet";
261
+ readonly $fault: "client";
262
+ constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
263
+ }
264
+ export declare class SubnetGroupAlreadyExistsFault extends __BaseException {
265
+ readonly name: "SubnetGroupAlreadyExistsFault";
266
+ readonly $fault: "client";
267
+ constructor(
268
+ opts: __ExceptionOptionType<SubnetGroupAlreadyExistsFault, __BaseException>
269
+ );
270
+ }
271
+ export declare class SubnetGroupQuotaExceededFault extends __BaseException {
272
+ readonly name: "SubnetGroupQuotaExceededFault";
273
+ readonly $fault: "client";
274
+ constructor(
275
+ opts: __ExceptionOptionType<SubnetGroupQuotaExceededFault, __BaseException>
276
+ );
277
+ }
278
+ export declare class SubnetQuotaExceededFault extends __BaseException {
279
+ readonly name: "SubnetQuotaExceededFault";
280
+ readonly $fault: "client";
281
+ constructor(
282
+ opts: __ExceptionOptionType<SubnetQuotaExceededFault, __BaseException>
283
+ );
284
+ }
285
+ export declare class ClusterNotFoundFault extends __BaseException {
286
+ readonly name: "ClusterNotFoundFault";
287
+ readonly $fault: "client";
288
+ constructor(
289
+ opts: __ExceptionOptionType<ClusterNotFoundFault, __BaseException>
290
+ );
291
+ }
292
+ export interface DecreaseReplicationFactorRequest {
293
+ ClusterName: string | undefined;
294
+ NewReplicationFactor: number | undefined;
295
+ AvailabilityZones?: string[];
296
+ NodeIdsToRemove?: string[];
297
+ }
298
+ export interface DecreaseReplicationFactorResponse {
299
+ Cluster?: Cluster;
300
+ }
301
+ export declare class NodeNotFoundFault extends __BaseException {
302
+ readonly name: "NodeNotFoundFault";
303
+ readonly $fault: "client";
304
+ constructor(opts: __ExceptionOptionType<NodeNotFoundFault, __BaseException>);
305
+ }
306
+ export interface DeleteClusterRequest {
307
+ ClusterName: string | undefined;
308
+ }
309
+ export interface DeleteClusterResponse {
310
+ Cluster?: Cluster;
311
+ }
312
+ export interface DeleteParameterGroupRequest {
313
+ ParameterGroupName: string | undefined;
314
+ }
315
+ export interface DeleteParameterGroupResponse {
316
+ DeletionMessage?: string;
317
+ }
318
+ export interface DeleteSubnetGroupRequest {
319
+ SubnetGroupName: string | undefined;
320
+ }
321
+ export interface DeleteSubnetGroupResponse {
322
+ DeletionMessage?: string;
323
+ }
324
+ export declare class SubnetGroupInUseFault extends __BaseException {
325
+ readonly name: "SubnetGroupInUseFault";
326
+ readonly $fault: "client";
327
+ constructor(
328
+ opts: __ExceptionOptionType<SubnetGroupInUseFault, __BaseException>
329
+ );
330
+ }
331
+ export interface DescribeClustersRequest {
332
+ ClusterNames?: string[];
333
+ MaxResults?: number;
334
+ NextToken?: string;
335
+ }
336
+ export interface DescribeClustersResponse {
337
+ NextToken?: string;
338
+ Clusters?: Cluster[];
339
+ }
340
+ export interface DescribeDefaultParametersRequest {
341
+ MaxResults?: number;
342
+ NextToken?: string;
343
+ }
344
+ export declare type ChangeType = "IMMEDIATE" | "REQUIRES_REBOOT";
345
+ export declare type IsModifiable = "CONDITIONAL" | "FALSE" | "TRUE";
346
+ export interface NodeTypeSpecificValue {
347
+ NodeType?: string;
348
+ Value?: string;
349
+ }
350
+ export declare type ParameterType = "DEFAULT" | "NODE_TYPE_SPECIFIC";
351
+ export interface Parameter {
352
+ ParameterName?: string;
353
+ ParameterType?: ParameterType | string;
354
+ ParameterValue?: string;
355
+ NodeTypeSpecificValues?: NodeTypeSpecificValue[];
356
+ Description?: string;
357
+ Source?: string;
358
+ DataType?: string;
359
+ AllowedValues?: string;
360
+ IsModifiable?: IsModifiable | string;
361
+ ChangeType?: ChangeType | string;
362
+ }
363
+ export interface DescribeDefaultParametersResponse {
364
+ NextToken?: string;
365
+ Parameters?: Parameter[];
366
+ }
367
+ export declare type SourceType = "CLUSTER" | "PARAMETER_GROUP" | "SUBNET_GROUP";
368
+ export interface DescribeEventsRequest {
369
+ SourceName?: string;
370
+ SourceType?: SourceType | string;
371
+ StartTime?: Date;
372
+ EndTime?: Date;
373
+ Duration?: number;
374
+ MaxResults?: number;
375
+ NextToken?: string;
376
+ }
377
+ export interface Event {
378
+ SourceName?: string;
379
+ SourceType?: SourceType | string;
380
+ Message?: string;
381
+ Date?: Date;
382
+ }
383
+ export interface DescribeEventsResponse {
384
+ NextToken?: string;
385
+ Events?: Event[];
386
+ }
387
+ export interface DescribeParameterGroupsRequest {
388
+ ParameterGroupNames?: string[];
389
+ MaxResults?: number;
390
+ NextToken?: string;
391
+ }
392
+ export interface DescribeParameterGroupsResponse {
393
+ NextToken?: string;
394
+ ParameterGroups?: ParameterGroup[];
395
+ }
396
+ export interface DescribeParametersRequest {
397
+ ParameterGroupName: string | undefined;
398
+ Source?: string;
399
+ MaxResults?: number;
400
+ NextToken?: string;
401
+ }
402
+ export interface DescribeParametersResponse {
403
+ NextToken?: string;
404
+ Parameters?: Parameter[];
405
+ }
406
+ export interface DescribeSubnetGroupsRequest {
407
+ SubnetGroupNames?: string[];
408
+ MaxResults?: number;
409
+ NextToken?: string;
410
+ }
411
+ export interface DescribeSubnetGroupsResponse {
412
+ NextToken?: string;
413
+ SubnetGroups?: SubnetGroup[];
414
+ }
415
+ export interface IncreaseReplicationFactorRequest {
416
+ ClusterName: string | undefined;
417
+ NewReplicationFactor: number | undefined;
418
+ AvailabilityZones?: string[];
419
+ }
420
+ export interface IncreaseReplicationFactorResponse {
421
+ Cluster?: Cluster;
422
+ }
423
+ export declare class InvalidARNFault extends __BaseException {
424
+ readonly name: "InvalidARNFault";
425
+ readonly $fault: "client";
426
+ constructor(opts: __ExceptionOptionType<InvalidARNFault, __BaseException>);
427
+ }
428
+ export interface ListTagsRequest {
429
+ ResourceName: string | undefined;
430
+ NextToken?: string;
431
+ }
432
+ export interface ListTagsResponse {
433
+ Tags?: Tag[];
434
+ NextToken?: string;
435
+ }
436
+ export interface RebootNodeRequest {
437
+ ClusterName: string | undefined;
438
+ NodeId: string | undefined;
439
+ }
440
+ export interface RebootNodeResponse {
441
+ Cluster?: Cluster;
442
+ }
443
+ export interface TagResourceRequest {
444
+ ResourceName: string | undefined;
445
+ Tags: Tag[] | undefined;
446
+ }
447
+ export interface TagResourceResponse {
448
+ Tags?: Tag[];
449
+ }
450
+ export declare class TagNotFoundFault extends __BaseException {
451
+ readonly name: "TagNotFoundFault";
452
+ readonly $fault: "client";
453
+ constructor(opts: __ExceptionOptionType<TagNotFoundFault, __BaseException>);
454
+ }
455
+ export interface UntagResourceRequest {
456
+ ResourceName: string | undefined;
457
+ TagKeys: string[] | undefined;
458
+ }
459
+ export interface UntagResourceResponse {
460
+ Tags?: Tag[];
461
+ }
462
+ export interface UpdateClusterRequest {
463
+ ClusterName: string | undefined;
464
+ Description?: string;
465
+ PreferredMaintenanceWindow?: string;
466
+ NotificationTopicArn?: string;
467
+ NotificationTopicStatus?: string;
468
+ ParameterGroupName?: string;
469
+ SecurityGroupIds?: string[];
470
+ }
471
+ export interface UpdateClusterResponse {
472
+ Cluster?: Cluster;
473
+ }
474
+ export interface ParameterNameValue {
475
+ ParameterName?: string;
476
+ ParameterValue?: string;
477
+ }
478
+ export interface UpdateParameterGroupRequest {
479
+ ParameterGroupName: string | undefined;
480
+ ParameterNameValues: ParameterNameValue[] | undefined;
481
+ }
482
+ export interface UpdateParameterGroupResponse {
483
+ ParameterGroup?: ParameterGroup;
484
+ }
485
+ export declare class SubnetInUse extends __BaseException {
486
+ readonly name: "SubnetInUse";
487
+ readonly $fault: "client";
488
+ constructor(opts: __ExceptionOptionType<SubnetInUse, __BaseException>);
489
+ }
490
+ export interface UpdateSubnetGroupRequest {
491
+ SubnetGroupName: string | undefined;
492
+ Description?: string;
493
+ SubnetIds?: string[];
494
+ }
495
+ export interface UpdateSubnetGroupResponse {
496
+ SubnetGroup?: SubnetGroup;
497
+ }
498
+ export declare const SSESpecificationFilterSensitiveLog: (
499
+ obj: SSESpecification
500
+ ) => any;
501
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
502
+ export declare const CreateClusterRequestFilterSensitiveLog: (
503
+ obj: CreateClusterRequest
504
+ ) => any;
505
+ export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
506
+ export declare const NodeFilterSensitiveLog: (obj: Node) => any;
507
+ export declare const NotificationConfigurationFilterSensitiveLog: (
508
+ obj: NotificationConfiguration
509
+ ) => any;
510
+ export declare const ParameterGroupStatusFilterSensitiveLog: (
511
+ obj: ParameterGroupStatus
512
+ ) => any;
513
+ export declare const SecurityGroupMembershipFilterSensitiveLog: (
514
+ obj: SecurityGroupMembership
515
+ ) => any;
516
+ export declare const SSEDescriptionFilterSensitiveLog: (
517
+ obj: SSEDescription
518
+ ) => any;
519
+ export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
520
+ export declare const CreateClusterResponseFilterSensitiveLog: (
521
+ obj: CreateClusterResponse
522
+ ) => any;
523
+ export declare const CreateParameterGroupRequestFilterSensitiveLog: (
524
+ obj: CreateParameterGroupRequest
525
+ ) => any;
526
+ export declare const ParameterGroupFilterSensitiveLog: (
527
+ obj: ParameterGroup
528
+ ) => any;
529
+ export declare const CreateParameterGroupResponseFilterSensitiveLog: (
530
+ obj: CreateParameterGroupResponse
531
+ ) => any;
532
+ export declare const CreateSubnetGroupRequestFilterSensitiveLog: (
533
+ obj: CreateSubnetGroupRequest
534
+ ) => any;
535
+ export declare const SubnetFilterSensitiveLog: (obj: Subnet) => any;
536
+ export declare const SubnetGroupFilterSensitiveLog: (obj: SubnetGroup) => any;
537
+ export declare const CreateSubnetGroupResponseFilterSensitiveLog: (
538
+ obj: CreateSubnetGroupResponse
539
+ ) => any;
540
+ export declare const DecreaseReplicationFactorRequestFilterSensitiveLog: (
541
+ obj: DecreaseReplicationFactorRequest
542
+ ) => any;
543
+ export declare const DecreaseReplicationFactorResponseFilterSensitiveLog: (
544
+ obj: DecreaseReplicationFactorResponse
545
+ ) => any;
546
+ export declare const DeleteClusterRequestFilterSensitiveLog: (
547
+ obj: DeleteClusterRequest
548
+ ) => any;
549
+ export declare const DeleteClusterResponseFilterSensitiveLog: (
550
+ obj: DeleteClusterResponse
551
+ ) => any;
552
+ export declare const DeleteParameterGroupRequestFilterSensitiveLog: (
553
+ obj: DeleteParameterGroupRequest
554
+ ) => any;
555
+ export declare const DeleteParameterGroupResponseFilterSensitiveLog: (
556
+ obj: DeleteParameterGroupResponse
557
+ ) => any;
558
+ export declare const DeleteSubnetGroupRequestFilterSensitiveLog: (
559
+ obj: DeleteSubnetGroupRequest
560
+ ) => any;
561
+ export declare const DeleteSubnetGroupResponseFilterSensitiveLog: (
562
+ obj: DeleteSubnetGroupResponse
563
+ ) => any;
564
+ export declare const DescribeClustersRequestFilterSensitiveLog: (
565
+ obj: DescribeClustersRequest
566
+ ) => any;
567
+ export declare const DescribeClustersResponseFilterSensitiveLog: (
568
+ obj: DescribeClustersResponse
569
+ ) => any;
570
+ export declare const DescribeDefaultParametersRequestFilterSensitiveLog: (
571
+ obj: DescribeDefaultParametersRequest
572
+ ) => any;
573
+ export declare const NodeTypeSpecificValueFilterSensitiveLog: (
574
+ obj: NodeTypeSpecificValue
575
+ ) => any;
576
+ export declare const ParameterFilterSensitiveLog: (obj: Parameter) => any;
577
+ export declare const DescribeDefaultParametersResponseFilterSensitiveLog: (
578
+ obj: DescribeDefaultParametersResponse
579
+ ) => any;
580
+ export declare const DescribeEventsRequestFilterSensitiveLog: (
581
+ obj: DescribeEventsRequest
582
+ ) => any;
583
+ export declare const EventFilterSensitiveLog: (obj: Event) => any;
584
+ export declare const DescribeEventsResponseFilterSensitiveLog: (
585
+ obj: DescribeEventsResponse
586
+ ) => any;
587
+ export declare const DescribeParameterGroupsRequestFilterSensitiveLog: (
588
+ obj: DescribeParameterGroupsRequest
589
+ ) => any;
590
+ export declare const DescribeParameterGroupsResponseFilterSensitiveLog: (
591
+ obj: DescribeParameterGroupsResponse
592
+ ) => any;
593
+ export declare const DescribeParametersRequestFilterSensitiveLog: (
594
+ obj: DescribeParametersRequest
595
+ ) => any;
596
+ export declare const DescribeParametersResponseFilterSensitiveLog: (
597
+ obj: DescribeParametersResponse
598
+ ) => any;
599
+ export declare const DescribeSubnetGroupsRequestFilterSensitiveLog: (
600
+ obj: DescribeSubnetGroupsRequest
601
+ ) => any;
602
+ export declare const DescribeSubnetGroupsResponseFilterSensitiveLog: (
603
+ obj: DescribeSubnetGroupsResponse
604
+ ) => any;
605
+ export declare const IncreaseReplicationFactorRequestFilterSensitiveLog: (
606
+ obj: IncreaseReplicationFactorRequest
607
+ ) => any;
608
+ export declare const IncreaseReplicationFactorResponseFilterSensitiveLog: (
609
+ obj: IncreaseReplicationFactorResponse
610
+ ) => any;
611
+ export declare const ListTagsRequestFilterSensitiveLog: (
612
+ obj: ListTagsRequest
613
+ ) => any;
614
+ export declare const ListTagsResponseFilterSensitiveLog: (
615
+ obj: ListTagsResponse
616
+ ) => any;
617
+ export declare const RebootNodeRequestFilterSensitiveLog: (
618
+ obj: RebootNodeRequest
619
+ ) => any;
620
+ export declare const RebootNodeResponseFilterSensitiveLog: (
621
+ obj: RebootNodeResponse
622
+ ) => any;
623
+ export declare const TagResourceRequestFilterSensitiveLog: (
624
+ obj: TagResourceRequest
625
+ ) => any;
626
+ export declare const TagResourceResponseFilterSensitiveLog: (
627
+ obj: TagResourceResponse
628
+ ) => any;
629
+ export declare const UntagResourceRequestFilterSensitiveLog: (
630
+ obj: UntagResourceRequest
631
+ ) => any;
632
+ export declare const UntagResourceResponseFilterSensitiveLog: (
633
+ obj: UntagResourceResponse
634
+ ) => any;
635
+ export declare const UpdateClusterRequestFilterSensitiveLog: (
636
+ obj: UpdateClusterRequest
637
+ ) => any;
638
+ export declare const UpdateClusterResponseFilterSensitiveLog: (
639
+ obj: UpdateClusterResponse
640
+ ) => any;
641
+ export declare const ParameterNameValueFilterSensitiveLog: (
642
+ obj: ParameterNameValue
643
+ ) => any;
644
+ export declare const UpdateParameterGroupRequestFilterSensitiveLog: (
645
+ obj: UpdateParameterGroupRequest
646
+ ) => any;
647
+ export declare const UpdateParameterGroupResponseFilterSensitiveLog: (
648
+ obj: UpdateParameterGroupResponse
649
+ ) => any;
650
+ export declare const UpdateSubnetGroupRequestFilterSensitiveLog: (
651
+ obj: UpdateSubnetGroupRequest
652
+ ) => any;
653
+ export declare const UpdateSubnetGroupResponseFilterSensitiveLog: (
654
+ obj: UpdateSubnetGroupResponse
655
+ ) => any;