@aws-sdk/client-dax 3.130.0 → 3.141.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 (49) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateClusterCommand.js +2 -2
  4. package/dist-cjs/commands/CreateParameterGroupCommand.js +2 -2
  5. package/dist-cjs/commands/CreateSubnetGroupCommand.js +2 -2
  6. package/dist-cjs/commands/DecreaseReplicationFactorCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteClusterCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteParameterGroupCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteSubnetGroupCommand.js +2 -2
  10. package/dist-cjs/commands/DescribeClustersCommand.js +2 -2
  11. package/dist-cjs/commands/DescribeDefaultParametersCommand.js +2 -2
  12. package/dist-cjs/commands/DescribeEventsCommand.js +2 -2
  13. package/dist-cjs/commands/DescribeParameterGroupsCommand.js +2 -2
  14. package/dist-cjs/commands/DescribeParametersCommand.js +2 -2
  15. package/dist-cjs/commands/DescribeSubnetGroupsCommand.js +2 -2
  16. package/dist-cjs/commands/IncreaseReplicationFactorCommand.js +2 -2
  17. package/dist-cjs/commands/ListTagsCommand.js +2 -2
  18. package/dist-cjs/commands/RebootNodeCommand.js +2 -2
  19. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  20. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  21. package/dist-cjs/commands/UpdateClusterCommand.js +2 -2
  22. package/dist-cjs/commands/UpdateParameterGroupCommand.js +2 -2
  23. package/dist-cjs/commands/UpdateSubnetGroupCommand.js +2 -2
  24. package/dist-cjs/models/models_0.js +234 -350
  25. package/dist-es/commands/CreateClusterCommand.js +3 -3
  26. package/dist-es/commands/CreateParameterGroupCommand.js +3 -3
  27. package/dist-es/commands/CreateSubnetGroupCommand.js +3 -3
  28. package/dist-es/commands/DecreaseReplicationFactorCommand.js +3 -3
  29. package/dist-es/commands/DeleteClusterCommand.js +3 -3
  30. package/dist-es/commands/DeleteParameterGroupCommand.js +3 -3
  31. package/dist-es/commands/DeleteSubnetGroupCommand.js +3 -3
  32. package/dist-es/commands/DescribeClustersCommand.js +3 -3
  33. package/dist-es/commands/DescribeDefaultParametersCommand.js +3 -3
  34. package/dist-es/commands/DescribeEventsCommand.js +3 -3
  35. package/dist-es/commands/DescribeParameterGroupsCommand.js +3 -3
  36. package/dist-es/commands/DescribeParametersCommand.js +3 -3
  37. package/dist-es/commands/DescribeSubnetGroupsCommand.js +3 -3
  38. package/dist-es/commands/IncreaseReplicationFactorCommand.js +3 -3
  39. package/dist-es/commands/ListTagsCommand.js +3 -3
  40. package/dist-es/commands/RebootNodeCommand.js +3 -3
  41. package/dist-es/commands/TagResourceCommand.js +3 -3
  42. package/dist-es/commands/UntagResourceCommand.js +3 -3
  43. package/dist-es/commands/UpdateClusterCommand.js +3 -3
  44. package/dist-es/commands/UpdateParameterGroupCommand.js +3 -3
  45. package/dist-es/commands/UpdateSubnetGroupCommand.js +3 -3
  46. package/dist-es/models/models_0.js +58 -232
  47. package/dist-types/models/models_0.d.ts +232 -348
  48. package/dist-types/ts3.4/models/models_0.d.ts +116 -232
  49. package/package.json +7 -7
@@ -36,12 +36,6 @@ export interface SSESpecification {
36
36
  */
37
37
  Enabled: boolean | undefined;
38
38
  }
39
- export declare namespace SSESpecification {
40
- /**
41
- * @internal
42
- */
43
- const filterSensitiveLog: (obj: SSESpecification) => any;
44
- }
45
39
  /**
46
40
  * <p>A description of a tag. Every tag is a key-value pair. You can add up to 50 tags to a single
47
41
  * DAX cluster.</p>
@@ -62,12 +56,6 @@ export interface Tag {
62
56
  */
63
57
  Value?: string;
64
58
  }
65
- export declare namespace Tag {
66
- /**
67
- * @internal
68
- */
69
- const filterSensitiveLog: (obj: Tag) => any;
70
- }
71
59
  export interface CreateClusterRequest {
72
60
  /**
73
61
  * <p>The cluster identifier. This parameter is stored as a lowercase
@@ -222,12 +210,6 @@ export interface CreateClusterRequest {
222
210
  */
223
211
  ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
224
212
  }
225
- export declare namespace CreateClusterRequest {
226
- /**
227
- * @internal
228
- */
229
- const filterSensitiveLog: (obj: CreateClusterRequest) => any;
230
- }
231
213
  /**
232
214
  * <p>Represents the information required for client programs to connect to the
233
215
  * endpoint for a DAX cluster.</p>
@@ -247,12 +229,6 @@ export interface Endpoint {
247
229
  */
248
230
  URL?: string;
249
231
  }
250
- export declare namespace Endpoint {
251
- /**
252
- * @internal
253
- */
254
- const filterSensitiveLog: (obj: Endpoint) => any;
255
- }
256
232
  /**
257
233
  * <p>Represents an individual node within a DAX cluster.</p>
258
234
  */
@@ -286,12 +262,6 @@ export interface Node {
286
262
  */
287
263
  ParameterGroupStatus?: string;
288
264
  }
289
- export declare namespace Node {
290
- /**
291
- * @internal
292
- */
293
- const filterSensitiveLog: (obj: Node) => any;
294
- }
295
265
  /**
296
266
  * <p>Describes a notification topic and its status. Notification topics are used for
297
267
  * publishing DAX events to subscribers using Amazon Simple Notification Service
@@ -309,12 +279,6 @@ export interface NotificationConfiguration {
309
279
  */
310
280
  TopicStatus?: string;
311
281
  }
312
- export declare namespace NotificationConfiguration {
313
- /**
314
- * @internal
315
- */
316
- const filterSensitiveLog: (obj: NotificationConfiguration) => any;
317
- }
318
282
  /**
319
283
  * <p>The status of a parameter group.</p>
320
284
  */
@@ -332,12 +296,6 @@ export interface ParameterGroupStatus {
332
296
  */
333
297
  NodeIdsToReboot?: string[];
334
298
  }
335
- export declare namespace ParameterGroupStatus {
336
- /**
337
- * @internal
338
- */
339
- const filterSensitiveLog: (obj: ParameterGroupStatus) => any;
340
- }
341
299
  /**
342
300
  * <p>An individual VPC security group and its status.</p>
343
301
  */
@@ -351,12 +309,6 @@ export interface SecurityGroupMembership {
351
309
  */
352
310
  Status?: string;
353
311
  }
354
- export declare namespace SecurityGroupMembership {
355
- /**
356
- * @internal
357
- */
358
- const filterSensitiveLog: (obj: SecurityGroupMembership) => any;
359
- }
360
312
  export declare type SSEStatus = "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
361
313
  /**
362
314
  * <p>The description of the server-side encryption status on the specified DAX cluster.</p>
@@ -385,12 +337,6 @@ export interface SSEDescription {
385
337
  */
386
338
  Status?: SSEStatus | string;
387
339
  }
388
- export declare namespace SSEDescription {
389
- /**
390
- * @internal
391
- */
392
- const filterSensitiveLog: (obj: SSEDescription) => any;
393
- }
394
340
  /**
395
341
  * <p>Contains all of the attributes of a specific DAX cluster.</p>
396
342
  */
@@ -487,24 +433,12 @@ export interface Cluster {
487
433
  */
488
434
  ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | string;
489
435
  }
490
- export declare namespace Cluster {
491
- /**
492
- * @internal
493
- */
494
- const filterSensitiveLog: (obj: Cluster) => any;
495
- }
496
436
  export interface CreateClusterResponse {
497
437
  /**
498
438
  * <p>A description of the DAX cluster that you have created.</p>
499
439
  */
500
440
  Cluster?: Cluster;
501
441
  }
502
- export declare namespace CreateClusterResponse {
503
- /**
504
- * @internal
505
- */
506
- const filterSensitiveLog: (obj: CreateClusterResponse) => any;
507
- }
508
442
  /**
509
443
  * <p>There are not enough system resources to create the cluster you requested (or to
510
444
  * resize an already-existing cluster). </p>
@@ -666,12 +600,6 @@ export interface CreateParameterGroupRequest {
666
600
  */
667
601
  Description?: string;
668
602
  }
669
- export declare namespace CreateParameterGroupRequest {
670
- /**
671
- * @internal
672
- */
673
- const filterSensitiveLog: (obj: CreateParameterGroupRequest) => any;
674
- }
675
603
  /**
676
604
  * <p>A named set of parameters that are applied to all of the nodes in a DAX
677
605
  * cluster.</p>
@@ -686,12 +614,6 @@ export interface ParameterGroup {
686
614
  */
687
615
  Description?: string;
688
616
  }
689
- export declare namespace ParameterGroup {
690
- /**
691
- * @internal
692
- */
693
- const filterSensitiveLog: (obj: ParameterGroup) => any;
694
- }
695
617
  export interface CreateParameterGroupResponse {
696
618
  /**
697
619
  * <p>Represents the output of a <i>CreateParameterGroup</i>
@@ -699,12 +621,6 @@ export interface CreateParameterGroupResponse {
699
621
  */
700
622
  ParameterGroup?: ParameterGroup;
701
623
  }
702
- export declare namespace CreateParameterGroupResponse {
703
- /**
704
- * @internal
705
- */
706
- const filterSensitiveLog: (obj: CreateParameterGroupResponse) => any;
707
- }
708
624
  /**
709
625
  * <p>The specified parameter group already exists.</p>
710
626
  */
@@ -741,12 +657,6 @@ export interface CreateSubnetGroupRequest {
741
657
  */
742
658
  SubnetIds: string[] | undefined;
743
659
  }
744
- export declare namespace CreateSubnetGroupRequest {
745
- /**
746
- * @internal
747
- */
748
- const filterSensitiveLog: (obj: CreateSubnetGroupRequest) => any;
749
- }
750
660
  /**
751
661
  * <p>Represents the subnet associated with a DAX cluster. This parameter refers to
752
662
  * subnets defined in Amazon Virtual Private Cloud (Amazon VPC) and used with
@@ -762,12 +672,6 @@ export interface Subnet {
762
672
  */
763
673
  SubnetAvailabilityZone?: string;
764
674
  }
765
- export declare namespace Subnet {
766
- /**
767
- * @internal
768
- */
769
- const filterSensitiveLog: (obj: Subnet) => any;
770
- }
771
675
  /**
772
676
  * <p>Represents the output of one of the following actions:</p>
773
677
  * <ul>
@@ -801,12 +705,6 @@ export interface SubnetGroup {
801
705
  */
802
706
  Subnets?: Subnet[];
803
707
  }
804
- export declare namespace SubnetGroup {
805
- /**
806
- * @internal
807
- */
808
- const filterSensitiveLog: (obj: SubnetGroup) => any;
809
- }
810
708
  export interface CreateSubnetGroupResponse {
811
709
  /**
812
710
  * <p>Represents the output of a <i>CreateSubnetGroup</i>
@@ -814,12 +712,6 @@ export interface CreateSubnetGroupResponse {
814
712
  */
815
713
  SubnetGroup?: SubnetGroup;
816
714
  }
817
- export declare namespace CreateSubnetGroupResponse {
818
- /**
819
- * @internal
820
- */
821
- const filterSensitiveLog: (obj: CreateSubnetGroupResponse) => any;
822
- }
823
715
  /**
824
716
  * <p>An invalid subnet identifier was specified.</p>
825
717
  */
@@ -895,12 +787,6 @@ export interface DecreaseReplicationFactorRequest {
895
787
  */
896
788
  NodeIdsToRemove?: string[];
897
789
  }
898
- export declare namespace DecreaseReplicationFactorRequest {
899
- /**
900
- * @internal
901
- */
902
- const filterSensitiveLog: (obj: DecreaseReplicationFactorRequest) => any;
903
- }
904
790
  export interface DecreaseReplicationFactorResponse {
905
791
  /**
906
792
  * <p>A description of the DAX cluster, after you have decreased its replication
@@ -908,12 +794,6 @@ export interface DecreaseReplicationFactorResponse {
908
794
  */
909
795
  Cluster?: Cluster;
910
796
  }
911
- export declare namespace DecreaseReplicationFactorResponse {
912
- /**
913
- * @internal
914
- */
915
- const filterSensitiveLog: (obj: DecreaseReplicationFactorResponse) => any;
916
- }
917
797
  /**
918
798
  * <p>None of the nodes in the cluster have the given node ID.</p>
919
799
  */
@@ -931,36 +811,18 @@ export interface DeleteClusterRequest {
931
811
  */
932
812
  ClusterName: string | undefined;
933
813
  }
934
- export declare namespace DeleteClusterRequest {
935
- /**
936
- * @internal
937
- */
938
- const filterSensitiveLog: (obj: DeleteClusterRequest) => any;
939
- }
940
814
  export interface DeleteClusterResponse {
941
815
  /**
942
816
  * <p>A description of the DAX cluster that is being deleted.</p>
943
817
  */
944
818
  Cluster?: Cluster;
945
819
  }
946
- export declare namespace DeleteClusterResponse {
947
- /**
948
- * @internal
949
- */
950
- const filterSensitiveLog: (obj: DeleteClusterResponse) => any;
951
- }
952
820
  export interface DeleteParameterGroupRequest {
953
821
  /**
954
822
  * <p>The name of the parameter group to delete.</p>
955
823
  */
956
824
  ParameterGroupName: string | undefined;
957
825
  }
958
- export declare namespace DeleteParameterGroupRequest {
959
- /**
960
- * @internal
961
- */
962
- const filterSensitiveLog: (obj: DeleteParameterGroupRequest) => any;
963
- }
964
826
  export interface DeleteParameterGroupResponse {
965
827
  /**
966
828
  * <p>A user-specified message for this action (i.e., a reason for deleting the parameter
@@ -968,24 +830,12 @@ export interface DeleteParameterGroupResponse {
968
830
  */
969
831
  DeletionMessage?: string;
970
832
  }
971
- export declare namespace DeleteParameterGroupResponse {
972
- /**
973
- * @internal
974
- */
975
- const filterSensitiveLog: (obj: DeleteParameterGroupResponse) => any;
976
- }
977
833
  export interface DeleteSubnetGroupRequest {
978
834
  /**
979
835
  * <p>The name of the subnet group to delete.</p>
980
836
  */
981
837
  SubnetGroupName: string | undefined;
982
838
  }
983
- export declare namespace DeleteSubnetGroupRequest {
984
- /**
985
- * @internal
986
- */
987
- const filterSensitiveLog: (obj: DeleteSubnetGroupRequest) => any;
988
- }
989
839
  export interface DeleteSubnetGroupResponse {
990
840
  /**
991
841
  * <p>A user-specified message for this action (i.e., a reason for deleting the subnet
@@ -993,12 +843,6 @@ export interface DeleteSubnetGroupResponse {
993
843
  */
994
844
  DeletionMessage?: string;
995
845
  }
996
- export declare namespace DeleteSubnetGroupResponse {
997
- /**
998
- * @internal
999
- */
1000
- const filterSensitiveLog: (obj: DeleteSubnetGroupResponse) => any;
1001
- }
1002
846
  /**
1003
847
  * <p>The specified subnet group is currently in use.</p>
1004
848
  */
@@ -1030,12 +874,6 @@ export interface DescribeClustersRequest {
1030
874
  */
1031
875
  NextToken?: string;
1032
876
  }
1033
- export declare namespace DescribeClustersRequest {
1034
- /**
1035
- * @internal
1036
- */
1037
- const filterSensitiveLog: (obj: DescribeClustersRequest) => any;
1038
- }
1039
877
  export interface DescribeClustersResponse {
1040
878
  /**
1041
879
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1047,12 +885,6 @@ export interface DescribeClustersResponse {
1047
885
  */
1048
886
  Clusters?: Cluster[];
1049
887
  }
1050
- export declare namespace DescribeClustersResponse {
1051
- /**
1052
- * @internal
1053
- */
1054
- const filterSensitiveLog: (obj: DescribeClustersResponse) => any;
1055
- }
1056
888
  export interface DescribeDefaultParametersRequest {
1057
889
  /**
1058
890
  * <p>The maximum number of results to include in the response. If more results exist
@@ -1069,12 +901,6 @@ export interface DescribeDefaultParametersRequest {
1069
901
  */
1070
902
  NextToken?: string;
1071
903
  }
1072
- export declare namespace DescribeDefaultParametersRequest {
1073
- /**
1074
- * @internal
1075
- */
1076
- const filterSensitiveLog: (obj: DescribeDefaultParametersRequest) => any;
1077
- }
1078
904
  export declare type ChangeType = "IMMEDIATE" | "REQUIRES_REBOOT";
1079
905
  export declare type IsModifiable = "CONDITIONAL" | "FALSE" | "TRUE";
1080
906
  /**
@@ -1091,12 +917,6 @@ export interface NodeTypeSpecificValue {
1091
917
  */
1092
918
  Value?: string;
1093
919
  }
1094
- export declare namespace NodeTypeSpecificValue {
1095
- /**
1096
- * @internal
1097
- */
1098
- const filterSensitiveLog: (obj: NodeTypeSpecificValue) => any;
1099
- }
1100
920
  export declare type ParameterType = "DEFAULT" | "NODE_TYPE_SPECIFIC";
1101
921
  /**
1102
922
  * <p>Describes an individual setting that controls some aspect of DAX
@@ -1148,12 +968,6 @@ export interface Parameter {
1148
968
  */
1149
969
  ChangeType?: ChangeType | string;
1150
970
  }
1151
- export declare namespace Parameter {
1152
- /**
1153
- * @internal
1154
- */
1155
- const filterSensitiveLog: (obj: Parameter) => any;
1156
- }
1157
971
  export interface DescribeDefaultParametersResponse {
1158
972
  /**
1159
973
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1164,12 +978,6 @@ export interface DescribeDefaultParametersResponse {
1164
978
  */
1165
979
  Parameters?: Parameter[];
1166
980
  }
1167
- export declare namespace DescribeDefaultParametersResponse {
1168
- /**
1169
- * @internal
1170
- */
1171
- const filterSensitiveLog: (obj: DescribeDefaultParametersResponse) => any;
1172
- }
1173
981
  export declare type SourceType = "CLUSTER" | "PARAMETER_GROUP" | "SUBNET_GROUP";
1174
982
  export interface DescribeEventsRequest {
1175
983
  /**
@@ -1211,12 +1019,6 @@ export interface DescribeEventsRequest {
1211
1019
  */
1212
1020
  NextToken?: string;
1213
1021
  }
1214
- export declare namespace DescribeEventsRequest {
1215
- /**
1216
- * @internal
1217
- */
1218
- const filterSensitiveLog: (obj: DescribeEventsRequest) => any;
1219
- }
1220
1022
  /**
1221
1023
  * <p>Represents a single occurrence of something interesting within the system. Some
1222
1024
  * examples of events are creating a DAX cluster, adding or removing a node, or rebooting
@@ -1242,12 +1044,6 @@ export interface Event {
1242
1044
  */
1243
1045
  Date?: Date;
1244
1046
  }
1245
- export declare namespace Event {
1246
- /**
1247
- * @internal
1248
- */
1249
- const filterSensitiveLog: (obj: Event) => any;
1250
- }
1251
1047
  export interface DescribeEventsResponse {
1252
1048
  /**
1253
1049
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1258,12 +1054,6 @@ export interface DescribeEventsResponse {
1258
1054
  */
1259
1055
  Events?: Event[];
1260
1056
  }
1261
- export declare namespace DescribeEventsResponse {
1262
- /**
1263
- * @internal
1264
- */
1265
- const filterSensitiveLog: (obj: DescribeEventsResponse) => any;
1266
- }
1267
1057
  export interface DescribeParameterGroupsRequest {
1268
1058
  /**
1269
1059
  * <p>The names of the parameter groups.</p>
@@ -1284,12 +1074,6 @@ export interface DescribeParameterGroupsRequest {
1284
1074
  */
1285
1075
  NextToken?: string;
1286
1076
  }
1287
- export declare namespace DescribeParameterGroupsRequest {
1288
- /**
1289
- * @internal
1290
- */
1291
- const filterSensitiveLog: (obj: DescribeParameterGroupsRequest) => any;
1292
- }
1293
1077
  export interface DescribeParameterGroupsResponse {
1294
1078
  /**
1295
1079
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1300,12 +1084,6 @@ export interface DescribeParameterGroupsResponse {
1300
1084
  */
1301
1085
  ParameterGroups?: ParameterGroup[];
1302
1086
  }
1303
- export declare namespace DescribeParameterGroupsResponse {
1304
- /**
1305
- * @internal
1306
- */
1307
- const filterSensitiveLog: (obj: DescribeParameterGroupsResponse) => any;
1308
- }
1309
1087
  export interface DescribeParametersRequest {
1310
1088
  /**
1311
1089
  * <p>The name of the parameter group.</p>
@@ -1331,12 +1109,6 @@ export interface DescribeParametersRequest {
1331
1109
  */
1332
1110
  NextToken?: string;
1333
1111
  }
1334
- export declare namespace DescribeParametersRequest {
1335
- /**
1336
- * @internal
1337
- */
1338
- const filterSensitiveLog: (obj: DescribeParametersRequest) => any;
1339
- }
1340
1112
  export interface DescribeParametersResponse {
1341
1113
  /**
1342
1114
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1347,12 +1119,6 @@ export interface DescribeParametersResponse {
1347
1119
  */
1348
1120
  Parameters?: Parameter[];
1349
1121
  }
1350
- export declare namespace DescribeParametersResponse {
1351
- /**
1352
- * @internal
1353
- */
1354
- const filterSensitiveLog: (obj: DescribeParametersResponse) => any;
1355
- }
1356
1122
  export interface DescribeSubnetGroupsRequest {
1357
1123
  /**
1358
1124
  * <p>The name of the subnet group.</p>
@@ -1373,12 +1139,6 @@ export interface DescribeSubnetGroupsRequest {
1373
1139
  */
1374
1140
  NextToken?: string;
1375
1141
  }
1376
- export declare namespace DescribeSubnetGroupsRequest {
1377
- /**
1378
- * @internal
1379
- */
1380
- const filterSensitiveLog: (obj: DescribeSubnetGroupsRequest) => any;
1381
- }
1382
1142
  export interface DescribeSubnetGroupsResponse {
1383
1143
  /**
1384
1144
  * <p>Provides an identifier to allow retrieval of paginated results.</p>
@@ -1389,12 +1149,6 @@ export interface DescribeSubnetGroupsResponse {
1389
1149
  */
1390
1150
  SubnetGroups?: SubnetGroup[];
1391
1151
  }
1392
- export declare namespace DescribeSubnetGroupsResponse {
1393
- /**
1394
- * @internal
1395
- */
1396
- const filterSensitiveLog: (obj: DescribeSubnetGroupsResponse) => any;
1397
- }
1398
1152
  export interface IncreaseReplicationFactorRequest {
1399
1153
  /**
1400
1154
  * <p>The name of the DAX cluster that will receive additional nodes.</p>
@@ -1411,24 +1165,12 @@ export interface IncreaseReplicationFactorRequest {
1411
1165
  */
1412
1166
  AvailabilityZones?: string[];
1413
1167
  }
1414
- export declare namespace IncreaseReplicationFactorRequest {
1415
- /**
1416
- * @internal
1417
- */
1418
- const filterSensitiveLog: (obj: IncreaseReplicationFactorRequest) => any;
1419
- }
1420
1168
  export interface IncreaseReplicationFactorResponse {
1421
1169
  /**
1422
1170
  * <p>A description of the DAX cluster. with its new replication factor.</p>
1423
1171
  */
1424
1172
  Cluster?: Cluster;
1425
1173
  }
1426
- export declare namespace IncreaseReplicationFactorResponse {
1427
- /**
1428
- * @internal
1429
- */
1430
- const filterSensitiveLog: (obj: IncreaseReplicationFactorResponse) => any;
1431
- }
1432
1174
  /**
1433
1175
  * <p>The Amazon Resource Name (ARN) supplied in the request is not valid.</p>
1434
1176
  */
@@ -1452,12 +1194,6 @@ export interface ListTagsRequest {
1452
1194
  */
1453
1195
  NextToken?: string;
1454
1196
  }
1455
- export declare namespace ListTagsRequest {
1456
- /**
1457
- * @internal
1458
- */
1459
- const filterSensitiveLog: (obj: ListTagsRequest) => any;
1460
- }
1461
1197
  export interface ListTagsResponse {
1462
1198
  /**
1463
1199
  * <p>A list of tags currently associated with the DAX cluster.</p>
@@ -1469,12 +1205,6 @@ export interface ListTagsResponse {
1469
1205
  */
1470
1206
  NextToken?: string;
1471
1207
  }
1472
- export declare namespace ListTagsResponse {
1473
- /**
1474
- * @internal
1475
- */
1476
- const filterSensitiveLog: (obj: ListTagsResponse) => any;
1477
- }
1478
1208
  export interface RebootNodeRequest {
1479
1209
  /**
1480
1210
  * <p>The name of the DAX cluster containing the node to be rebooted.</p>
@@ -1485,24 +1215,12 @@ export interface RebootNodeRequest {
1485
1215
  */
1486
1216
  NodeId: string | undefined;
1487
1217
  }
1488
- export declare namespace RebootNodeRequest {
1489
- /**
1490
- * @internal
1491
- */
1492
- const filterSensitiveLog: (obj: RebootNodeRequest) => any;
1493
- }
1494
1218
  export interface RebootNodeResponse {
1495
1219
  /**
1496
1220
  * <p>A description of the DAX cluster after a node has been rebooted.</p>
1497
1221
  */
1498
1222
  Cluster?: Cluster;
1499
1223
  }
1500
- export declare namespace RebootNodeResponse {
1501
- /**
1502
- * @internal
1503
- */
1504
- const filterSensitiveLog: (obj: RebootNodeResponse) => any;
1505
- }
1506
1224
  export interface TagResourceRequest {
1507
1225
  /**
1508
1226
  * <p>The name of the DAX resource to which tags should be added.</p>
@@ -1513,24 +1231,12 @@ export interface TagResourceRequest {
1513
1231
  */
1514
1232
  Tags: Tag[] | undefined;
1515
1233
  }
1516
- export declare namespace TagResourceRequest {
1517
- /**
1518
- * @internal
1519
- */
1520
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
1521
- }
1522
1234
  export interface TagResourceResponse {
1523
1235
  /**
1524
1236
  * <p>The list of tags that are associated with the DAX resource.</p>
1525
1237
  */
1526
1238
  Tags?: Tag[];
1527
1239
  }
1528
- export declare namespace TagResourceResponse {
1529
- /**
1530
- * @internal
1531
- */
1532
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
1533
- }
1534
1240
  /**
1535
1241
  * <p>The tag does not exist.</p>
1536
1242
  */
@@ -1552,24 +1258,12 @@ export interface UntagResourceRequest {
1552
1258
  */
1553
1259
  TagKeys: string[] | undefined;
1554
1260
  }
1555
- export declare namespace UntagResourceRequest {
1556
- /**
1557
- * @internal
1558
- */
1559
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1560
- }
1561
1261
  export interface UntagResourceResponse {
1562
1262
  /**
1563
1263
  * <p>The tag keys that have been removed from the cluster.</p>
1564
1264
  */
1565
1265
  Tags?: Tag[];
1566
1266
  }
1567
- export declare namespace UntagResourceResponse {
1568
- /**
1569
- * @internal
1570
- */
1571
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1572
- }
1573
1267
  export interface UpdateClusterRequest {
1574
1268
  /**
1575
1269
  * <p>The name of the DAX cluster to be modified.</p>
@@ -1605,24 +1299,12 @@ export interface UpdateClusterRequest {
1605
1299
  */
1606
1300
  SecurityGroupIds?: string[];
1607
1301
  }
1608
- export declare namespace UpdateClusterRequest {
1609
- /**
1610
- * @internal
1611
- */
1612
- const filterSensitiveLog: (obj: UpdateClusterRequest) => any;
1613
- }
1614
1302
  export interface UpdateClusterResponse {
1615
1303
  /**
1616
1304
  * <p>A description of the DAX cluster, after it has been modified.</p>
1617
1305
  */
1618
1306
  Cluster?: Cluster;
1619
1307
  }
1620
- export declare namespace UpdateClusterResponse {
1621
- /**
1622
- * @internal
1623
- */
1624
- const filterSensitiveLog: (obj: UpdateClusterResponse) => any;
1625
- }
1626
1308
  /**
1627
1309
  * <p>An individual DAX parameter.</p>
1628
1310
  */
@@ -1636,12 +1318,6 @@ export interface ParameterNameValue {
1636
1318
  */
1637
1319
  ParameterValue?: string;
1638
1320
  }
1639
- export declare namespace ParameterNameValue {
1640
- /**
1641
- * @internal
1642
- */
1643
- const filterSensitiveLog: (obj: ParameterNameValue) => any;
1644
- }
1645
1321
  export interface UpdateParameterGroupRequest {
1646
1322
  /**
1647
1323
  * <p>The name of the parameter group.</p>
@@ -1657,24 +1333,12 @@ export interface UpdateParameterGroupRequest {
1657
1333
  */
1658
1334
  ParameterNameValues: ParameterNameValue[] | undefined;
1659
1335
  }
1660
- export declare namespace UpdateParameterGroupRequest {
1661
- /**
1662
- * @internal
1663
- */
1664
- const filterSensitiveLog: (obj: UpdateParameterGroupRequest) => any;
1665
- }
1666
1336
  export interface UpdateParameterGroupResponse {
1667
1337
  /**
1668
1338
  * <p>The parameter group that has been modified.</p>
1669
1339
  */
1670
1340
  ParameterGroup?: ParameterGroup;
1671
1341
  }
1672
- export declare namespace UpdateParameterGroupResponse {
1673
- /**
1674
- * @internal
1675
- */
1676
- const filterSensitiveLog: (obj: UpdateParameterGroupResponse) => any;
1677
- }
1678
1342
  /**
1679
1343
  * <p>The requested subnet is being used by another subnet group.</p>
1680
1344
  */
@@ -1700,21 +1364,241 @@ export interface UpdateSubnetGroupRequest {
1700
1364
  */
1701
1365
  SubnetIds?: string[];
1702
1366
  }
1703
- export declare namespace UpdateSubnetGroupRequest {
1704
- /**
1705
- * @internal
1706
- */
1707
- const filterSensitiveLog: (obj: UpdateSubnetGroupRequest) => any;
1708
- }
1709
1367
  export interface UpdateSubnetGroupResponse {
1710
1368
  /**
1711
1369
  * <p>The subnet group that has been modified.</p>
1712
1370
  */
1713
1371
  SubnetGroup?: SubnetGroup;
1714
1372
  }
1715
- export declare namespace UpdateSubnetGroupResponse {
1716
- /**
1717
- * @internal
1718
- */
1719
- const filterSensitiveLog: (obj: UpdateSubnetGroupResponse) => any;
1720
- }
1373
+ /**
1374
+ * @internal
1375
+ */
1376
+ export declare const SSESpecificationFilterSensitiveLog: (obj: SSESpecification) => any;
1377
+ /**
1378
+ * @internal
1379
+ */
1380
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
1381
+ /**
1382
+ * @internal
1383
+ */
1384
+ export declare const CreateClusterRequestFilterSensitiveLog: (obj: CreateClusterRequest) => any;
1385
+ /**
1386
+ * @internal
1387
+ */
1388
+ export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
1389
+ /**
1390
+ * @internal
1391
+ */
1392
+ export declare const NodeFilterSensitiveLog: (obj: Node) => any;
1393
+ /**
1394
+ * @internal
1395
+ */
1396
+ export declare const NotificationConfigurationFilterSensitiveLog: (obj: NotificationConfiguration) => any;
1397
+ /**
1398
+ * @internal
1399
+ */
1400
+ export declare const ParameterGroupStatusFilterSensitiveLog: (obj: ParameterGroupStatus) => any;
1401
+ /**
1402
+ * @internal
1403
+ */
1404
+ export declare const SecurityGroupMembershipFilterSensitiveLog: (obj: SecurityGroupMembership) => any;
1405
+ /**
1406
+ * @internal
1407
+ */
1408
+ export declare const SSEDescriptionFilterSensitiveLog: (obj: SSEDescription) => any;
1409
+ /**
1410
+ * @internal
1411
+ */
1412
+ export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
1413
+ /**
1414
+ * @internal
1415
+ */
1416
+ export declare const CreateClusterResponseFilterSensitiveLog: (obj: CreateClusterResponse) => any;
1417
+ /**
1418
+ * @internal
1419
+ */
1420
+ export declare const CreateParameterGroupRequestFilterSensitiveLog: (obj: CreateParameterGroupRequest) => any;
1421
+ /**
1422
+ * @internal
1423
+ */
1424
+ export declare const ParameterGroupFilterSensitiveLog: (obj: ParameterGroup) => any;
1425
+ /**
1426
+ * @internal
1427
+ */
1428
+ export declare const CreateParameterGroupResponseFilterSensitiveLog: (obj: CreateParameterGroupResponse) => any;
1429
+ /**
1430
+ * @internal
1431
+ */
1432
+ export declare const CreateSubnetGroupRequestFilterSensitiveLog: (obj: CreateSubnetGroupRequest) => any;
1433
+ /**
1434
+ * @internal
1435
+ */
1436
+ export declare const SubnetFilterSensitiveLog: (obj: Subnet) => any;
1437
+ /**
1438
+ * @internal
1439
+ */
1440
+ export declare const SubnetGroupFilterSensitiveLog: (obj: SubnetGroup) => any;
1441
+ /**
1442
+ * @internal
1443
+ */
1444
+ export declare const CreateSubnetGroupResponseFilterSensitiveLog: (obj: CreateSubnetGroupResponse) => any;
1445
+ /**
1446
+ * @internal
1447
+ */
1448
+ export declare const DecreaseReplicationFactorRequestFilterSensitiveLog: (obj: DecreaseReplicationFactorRequest) => any;
1449
+ /**
1450
+ * @internal
1451
+ */
1452
+ export declare const DecreaseReplicationFactorResponseFilterSensitiveLog: (obj: DecreaseReplicationFactorResponse) => any;
1453
+ /**
1454
+ * @internal
1455
+ */
1456
+ export declare const DeleteClusterRequestFilterSensitiveLog: (obj: DeleteClusterRequest) => any;
1457
+ /**
1458
+ * @internal
1459
+ */
1460
+ export declare const DeleteClusterResponseFilterSensitiveLog: (obj: DeleteClusterResponse) => any;
1461
+ /**
1462
+ * @internal
1463
+ */
1464
+ export declare const DeleteParameterGroupRequestFilterSensitiveLog: (obj: DeleteParameterGroupRequest) => any;
1465
+ /**
1466
+ * @internal
1467
+ */
1468
+ export declare const DeleteParameterGroupResponseFilterSensitiveLog: (obj: DeleteParameterGroupResponse) => any;
1469
+ /**
1470
+ * @internal
1471
+ */
1472
+ export declare const DeleteSubnetGroupRequestFilterSensitiveLog: (obj: DeleteSubnetGroupRequest) => any;
1473
+ /**
1474
+ * @internal
1475
+ */
1476
+ export declare const DeleteSubnetGroupResponseFilterSensitiveLog: (obj: DeleteSubnetGroupResponse) => any;
1477
+ /**
1478
+ * @internal
1479
+ */
1480
+ export declare const DescribeClustersRequestFilterSensitiveLog: (obj: DescribeClustersRequest) => any;
1481
+ /**
1482
+ * @internal
1483
+ */
1484
+ export declare const DescribeClustersResponseFilterSensitiveLog: (obj: DescribeClustersResponse) => any;
1485
+ /**
1486
+ * @internal
1487
+ */
1488
+ export declare const DescribeDefaultParametersRequestFilterSensitiveLog: (obj: DescribeDefaultParametersRequest) => any;
1489
+ /**
1490
+ * @internal
1491
+ */
1492
+ export declare const NodeTypeSpecificValueFilterSensitiveLog: (obj: NodeTypeSpecificValue) => any;
1493
+ /**
1494
+ * @internal
1495
+ */
1496
+ export declare const ParameterFilterSensitiveLog: (obj: Parameter) => any;
1497
+ /**
1498
+ * @internal
1499
+ */
1500
+ export declare const DescribeDefaultParametersResponseFilterSensitiveLog: (obj: DescribeDefaultParametersResponse) => any;
1501
+ /**
1502
+ * @internal
1503
+ */
1504
+ export declare const DescribeEventsRequestFilterSensitiveLog: (obj: DescribeEventsRequest) => any;
1505
+ /**
1506
+ * @internal
1507
+ */
1508
+ export declare const EventFilterSensitiveLog: (obj: Event) => any;
1509
+ /**
1510
+ * @internal
1511
+ */
1512
+ export declare const DescribeEventsResponseFilterSensitiveLog: (obj: DescribeEventsResponse) => any;
1513
+ /**
1514
+ * @internal
1515
+ */
1516
+ export declare const DescribeParameterGroupsRequestFilterSensitiveLog: (obj: DescribeParameterGroupsRequest) => any;
1517
+ /**
1518
+ * @internal
1519
+ */
1520
+ export declare const DescribeParameterGroupsResponseFilterSensitiveLog: (obj: DescribeParameterGroupsResponse) => any;
1521
+ /**
1522
+ * @internal
1523
+ */
1524
+ export declare const DescribeParametersRequestFilterSensitiveLog: (obj: DescribeParametersRequest) => any;
1525
+ /**
1526
+ * @internal
1527
+ */
1528
+ export declare const DescribeParametersResponseFilterSensitiveLog: (obj: DescribeParametersResponse) => any;
1529
+ /**
1530
+ * @internal
1531
+ */
1532
+ export declare const DescribeSubnetGroupsRequestFilterSensitiveLog: (obj: DescribeSubnetGroupsRequest) => any;
1533
+ /**
1534
+ * @internal
1535
+ */
1536
+ export declare const DescribeSubnetGroupsResponseFilterSensitiveLog: (obj: DescribeSubnetGroupsResponse) => any;
1537
+ /**
1538
+ * @internal
1539
+ */
1540
+ export declare const IncreaseReplicationFactorRequestFilterSensitiveLog: (obj: IncreaseReplicationFactorRequest) => any;
1541
+ /**
1542
+ * @internal
1543
+ */
1544
+ export declare const IncreaseReplicationFactorResponseFilterSensitiveLog: (obj: IncreaseReplicationFactorResponse) => any;
1545
+ /**
1546
+ * @internal
1547
+ */
1548
+ export declare const ListTagsRequestFilterSensitiveLog: (obj: ListTagsRequest) => any;
1549
+ /**
1550
+ * @internal
1551
+ */
1552
+ export declare const ListTagsResponseFilterSensitiveLog: (obj: ListTagsResponse) => any;
1553
+ /**
1554
+ * @internal
1555
+ */
1556
+ export declare const RebootNodeRequestFilterSensitiveLog: (obj: RebootNodeRequest) => any;
1557
+ /**
1558
+ * @internal
1559
+ */
1560
+ export declare const RebootNodeResponseFilterSensitiveLog: (obj: RebootNodeResponse) => any;
1561
+ /**
1562
+ * @internal
1563
+ */
1564
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1565
+ /**
1566
+ * @internal
1567
+ */
1568
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1569
+ /**
1570
+ * @internal
1571
+ */
1572
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1573
+ /**
1574
+ * @internal
1575
+ */
1576
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1577
+ /**
1578
+ * @internal
1579
+ */
1580
+ export declare const UpdateClusterRequestFilterSensitiveLog: (obj: UpdateClusterRequest) => any;
1581
+ /**
1582
+ * @internal
1583
+ */
1584
+ export declare const UpdateClusterResponseFilterSensitiveLog: (obj: UpdateClusterResponse) => any;
1585
+ /**
1586
+ * @internal
1587
+ */
1588
+ export declare const ParameterNameValueFilterSensitiveLog: (obj: ParameterNameValue) => any;
1589
+ /**
1590
+ * @internal
1591
+ */
1592
+ export declare const UpdateParameterGroupRequestFilterSensitiveLog: (obj: UpdateParameterGroupRequest) => any;
1593
+ /**
1594
+ * @internal
1595
+ */
1596
+ export declare const UpdateParameterGroupResponseFilterSensitiveLog: (obj: UpdateParameterGroupResponse) => any;
1597
+ /**
1598
+ * @internal
1599
+ */
1600
+ export declare const UpdateSubnetGroupRequestFilterSensitiveLog: (obj: UpdateSubnetGroupRequest) => any;
1601
+ /**
1602
+ * @internal
1603
+ */
1604
+ export declare const UpdateSubnetGroupResponseFilterSensitiveLog: (obj: UpdateSubnetGroupResponse) => any;