@aws-sdk/client-dax 3.180.0 → 3.183.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +27 -21
  3. package/dist-es/DAX.js +86 -93
  4. package/dist-es/DAXClient.js +22 -28
  5. package/dist-es/commands/CreateClusterCommand.js +21 -28
  6. package/dist-es/commands/CreateParameterGroupCommand.js +21 -28
  7. package/dist-es/commands/CreateSubnetGroupCommand.js +21 -28
  8. package/dist-es/commands/DecreaseReplicationFactorCommand.js +21 -28
  9. package/dist-es/commands/DeleteClusterCommand.js +21 -28
  10. package/dist-es/commands/DeleteParameterGroupCommand.js +21 -28
  11. package/dist-es/commands/DeleteSubnetGroupCommand.js +21 -28
  12. package/dist-es/commands/DescribeClustersCommand.js +21 -28
  13. package/dist-es/commands/DescribeDefaultParametersCommand.js +21 -28
  14. package/dist-es/commands/DescribeEventsCommand.js +21 -28
  15. package/dist-es/commands/DescribeParameterGroupsCommand.js +21 -28
  16. package/dist-es/commands/DescribeParametersCommand.js +21 -28
  17. package/dist-es/commands/DescribeSubnetGroupsCommand.js +21 -28
  18. package/dist-es/commands/IncreaseReplicationFactorCommand.js +21 -28
  19. package/dist-es/commands/ListTagsCommand.js +21 -28
  20. package/dist-es/commands/RebootNodeCommand.js +21 -28
  21. package/dist-es/commands/TagResourceCommand.js +21 -28
  22. package/dist-es/commands/UntagResourceCommand.js +21 -28
  23. package/dist-es/commands/UpdateClusterCommand.js +21 -28
  24. package/dist-es/commands/UpdateParameterGroupCommand.js +21 -28
  25. package/dist-es/commands/UpdateSubnetGroupCommand.js +21 -28
  26. package/dist-es/endpoints.js +8 -8
  27. package/dist-es/models/DAXServiceException.js +5 -10
  28. package/dist-es/models/models_0.js +471 -356
  29. package/dist-es/protocols/Aws_json1_1.js +1776 -2203
  30. package/dist-es/runtimeConfig.browser.js +26 -12
  31. package/dist-es/runtimeConfig.js +30 -12
  32. package/dist-es/runtimeConfig.native.js +8 -5
  33. package/dist-es/runtimeConfig.shared.js +8 -11
  34. package/package.json +33 -33
@@ -1,389 +1,504 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { DAXServiceException as __BaseException } from "./DAXServiceException";
3
- var ClusterAlreadyExistsFault = (function (_super) {
4
- __extends(ClusterAlreadyExistsFault, _super);
5
- function ClusterAlreadyExistsFault(opts) {
6
- var _this = _super.call(this, __assign({ name: "ClusterAlreadyExistsFault", $fault: "client" }, opts)) || this;
7
- _this.name = "ClusterAlreadyExistsFault";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, ClusterAlreadyExistsFault.prototype);
10
- return _this;
2
+ export class ClusterAlreadyExistsFault extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "ClusterAlreadyExistsFault",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "ClusterAlreadyExistsFault";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, ClusterAlreadyExistsFault.prototype);
11
12
  }
12
- return ClusterAlreadyExistsFault;
13
- }(__BaseException));
14
- export { ClusterAlreadyExistsFault };
15
- var ClusterQuotaForCustomerExceededFault = (function (_super) {
16
- __extends(ClusterQuotaForCustomerExceededFault, _super);
17
- function ClusterQuotaForCustomerExceededFault(opts) {
18
- var _this = _super.call(this, __assign({ name: "ClusterQuotaForCustomerExceededFault", $fault: "client" }, opts)) || this;
19
- _this.name = "ClusterQuotaForCustomerExceededFault";
20
- _this.$fault = "client";
21
- Object.setPrototypeOf(_this, ClusterQuotaForCustomerExceededFault.prototype);
22
- return _this;
13
+ }
14
+ export class ClusterQuotaForCustomerExceededFault extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "ClusterQuotaForCustomerExceededFault",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "ClusterQuotaForCustomerExceededFault";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, ClusterQuotaForCustomerExceededFault.prototype);
23
24
  }
24
- return ClusterQuotaForCustomerExceededFault;
25
- }(__BaseException));
26
- export { ClusterQuotaForCustomerExceededFault };
25
+ }
27
26
  export var ClusterEndpointEncryptionType;
28
27
  (function (ClusterEndpointEncryptionType) {
29
28
  ClusterEndpointEncryptionType["NONE"] = "NONE";
30
29
  ClusterEndpointEncryptionType["TLS"] = "TLS";
31
30
  })(ClusterEndpointEncryptionType || (ClusterEndpointEncryptionType = {}));
32
- var InsufficientClusterCapacityFault = (function (_super) {
33
- __extends(InsufficientClusterCapacityFault, _super);
34
- function InsufficientClusterCapacityFault(opts) {
35
- var _this = _super.call(this, __assign({ name: "InsufficientClusterCapacityFault", $fault: "client" }, opts)) || this;
36
- _this.name = "InsufficientClusterCapacityFault";
37
- _this.$fault = "client";
38
- Object.setPrototypeOf(_this, InsufficientClusterCapacityFault.prototype);
39
- return _this;
31
+ export class InsufficientClusterCapacityFault extends __BaseException {
32
+ constructor(opts) {
33
+ super({
34
+ name: "InsufficientClusterCapacityFault",
35
+ $fault: "client",
36
+ ...opts,
37
+ });
38
+ this.name = "InsufficientClusterCapacityFault";
39
+ this.$fault = "client";
40
+ Object.setPrototypeOf(this, InsufficientClusterCapacityFault.prototype);
40
41
  }
41
- return InsufficientClusterCapacityFault;
42
- }(__BaseException));
43
- export { InsufficientClusterCapacityFault };
44
- var InvalidClusterStateFault = (function (_super) {
45
- __extends(InvalidClusterStateFault, _super);
46
- function InvalidClusterStateFault(opts) {
47
- var _this = _super.call(this, __assign({ name: "InvalidClusterStateFault", $fault: "client" }, opts)) || this;
48
- _this.name = "InvalidClusterStateFault";
49
- _this.$fault = "client";
50
- Object.setPrototypeOf(_this, InvalidClusterStateFault.prototype);
51
- return _this;
42
+ }
43
+ export class InvalidClusterStateFault extends __BaseException {
44
+ constructor(opts) {
45
+ super({
46
+ name: "InvalidClusterStateFault",
47
+ $fault: "client",
48
+ ...opts,
49
+ });
50
+ this.name = "InvalidClusterStateFault";
51
+ this.$fault = "client";
52
+ Object.setPrototypeOf(this, InvalidClusterStateFault.prototype);
52
53
  }
53
- return InvalidClusterStateFault;
54
- }(__BaseException));
55
- export { InvalidClusterStateFault };
56
- var InvalidParameterCombinationException = (function (_super) {
57
- __extends(InvalidParameterCombinationException, _super);
58
- function InvalidParameterCombinationException(opts) {
59
- var _this = _super.call(this, __assign({ name: "InvalidParameterCombinationException", $fault: "client" }, opts)) || this;
60
- _this.name = "InvalidParameterCombinationException";
61
- _this.$fault = "client";
62
- Object.setPrototypeOf(_this, InvalidParameterCombinationException.prototype);
63
- return _this;
54
+ }
55
+ export class InvalidParameterCombinationException extends __BaseException {
56
+ constructor(opts) {
57
+ super({
58
+ name: "InvalidParameterCombinationException",
59
+ $fault: "client",
60
+ ...opts,
61
+ });
62
+ this.name = "InvalidParameterCombinationException";
63
+ this.$fault = "client";
64
+ Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
64
65
  }
65
- return InvalidParameterCombinationException;
66
- }(__BaseException));
67
- export { InvalidParameterCombinationException };
68
- var InvalidParameterGroupStateFault = (function (_super) {
69
- __extends(InvalidParameterGroupStateFault, _super);
70
- function InvalidParameterGroupStateFault(opts) {
71
- var _this = _super.call(this, __assign({ name: "InvalidParameterGroupStateFault", $fault: "client" }, opts)) || this;
72
- _this.name = "InvalidParameterGroupStateFault";
73
- _this.$fault = "client";
74
- Object.setPrototypeOf(_this, InvalidParameterGroupStateFault.prototype);
75
- return _this;
66
+ }
67
+ export class InvalidParameterGroupStateFault extends __BaseException {
68
+ constructor(opts) {
69
+ super({
70
+ name: "InvalidParameterGroupStateFault",
71
+ $fault: "client",
72
+ ...opts,
73
+ });
74
+ this.name = "InvalidParameterGroupStateFault";
75
+ this.$fault = "client";
76
+ Object.setPrototypeOf(this, InvalidParameterGroupStateFault.prototype);
76
77
  }
77
- return InvalidParameterGroupStateFault;
78
- }(__BaseException));
79
- export { InvalidParameterGroupStateFault };
80
- var InvalidParameterValueException = (function (_super) {
81
- __extends(InvalidParameterValueException, _super);
82
- function InvalidParameterValueException(opts) {
83
- var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
84
- _this.name = "InvalidParameterValueException";
85
- _this.$fault = "client";
86
- Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
87
- return _this;
78
+ }
79
+ export class InvalidParameterValueException extends __BaseException {
80
+ constructor(opts) {
81
+ super({
82
+ name: "InvalidParameterValueException",
83
+ $fault: "client",
84
+ ...opts,
85
+ });
86
+ this.name = "InvalidParameterValueException";
87
+ this.$fault = "client";
88
+ Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
88
89
  }
89
- return InvalidParameterValueException;
90
- }(__BaseException));
91
- export { InvalidParameterValueException };
92
- var InvalidVPCNetworkStateFault = (function (_super) {
93
- __extends(InvalidVPCNetworkStateFault, _super);
94
- function InvalidVPCNetworkStateFault(opts) {
95
- var _this = _super.call(this, __assign({ name: "InvalidVPCNetworkStateFault", $fault: "client" }, opts)) || this;
96
- _this.name = "InvalidVPCNetworkStateFault";
97
- _this.$fault = "client";
98
- Object.setPrototypeOf(_this, InvalidVPCNetworkStateFault.prototype);
99
- return _this;
90
+ }
91
+ export class InvalidVPCNetworkStateFault extends __BaseException {
92
+ constructor(opts) {
93
+ super({
94
+ name: "InvalidVPCNetworkStateFault",
95
+ $fault: "client",
96
+ ...opts,
97
+ });
98
+ this.name = "InvalidVPCNetworkStateFault";
99
+ this.$fault = "client";
100
+ Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
100
101
  }
101
- return InvalidVPCNetworkStateFault;
102
- }(__BaseException));
103
- export { InvalidVPCNetworkStateFault };
104
- var NodeQuotaForClusterExceededFault = (function (_super) {
105
- __extends(NodeQuotaForClusterExceededFault, _super);
106
- function NodeQuotaForClusterExceededFault(opts) {
107
- var _this = _super.call(this, __assign({ name: "NodeQuotaForClusterExceededFault", $fault: "client" }, opts)) || this;
108
- _this.name = "NodeQuotaForClusterExceededFault";
109
- _this.$fault = "client";
110
- Object.setPrototypeOf(_this, NodeQuotaForClusterExceededFault.prototype);
111
- return _this;
102
+ }
103
+ export class NodeQuotaForClusterExceededFault extends __BaseException {
104
+ constructor(opts) {
105
+ super({
106
+ name: "NodeQuotaForClusterExceededFault",
107
+ $fault: "client",
108
+ ...opts,
109
+ });
110
+ this.name = "NodeQuotaForClusterExceededFault";
111
+ this.$fault = "client";
112
+ Object.setPrototypeOf(this, NodeQuotaForClusterExceededFault.prototype);
112
113
  }
113
- return NodeQuotaForClusterExceededFault;
114
- }(__BaseException));
115
- export { NodeQuotaForClusterExceededFault };
116
- var NodeQuotaForCustomerExceededFault = (function (_super) {
117
- __extends(NodeQuotaForCustomerExceededFault, _super);
118
- function NodeQuotaForCustomerExceededFault(opts) {
119
- var _this = _super.call(this, __assign({ name: "NodeQuotaForCustomerExceededFault", $fault: "client" }, opts)) || this;
120
- _this.name = "NodeQuotaForCustomerExceededFault";
121
- _this.$fault = "client";
122
- Object.setPrototypeOf(_this, NodeQuotaForCustomerExceededFault.prototype);
123
- return _this;
114
+ }
115
+ export class NodeQuotaForCustomerExceededFault extends __BaseException {
116
+ constructor(opts) {
117
+ super({
118
+ name: "NodeQuotaForCustomerExceededFault",
119
+ $fault: "client",
120
+ ...opts,
121
+ });
122
+ this.name = "NodeQuotaForCustomerExceededFault";
123
+ this.$fault = "client";
124
+ Object.setPrototypeOf(this, NodeQuotaForCustomerExceededFault.prototype);
124
125
  }
125
- return NodeQuotaForCustomerExceededFault;
126
- }(__BaseException));
127
- export { NodeQuotaForCustomerExceededFault };
128
- var ParameterGroupNotFoundFault = (function (_super) {
129
- __extends(ParameterGroupNotFoundFault, _super);
130
- function ParameterGroupNotFoundFault(opts) {
131
- var _this = _super.call(this, __assign({ name: "ParameterGroupNotFoundFault", $fault: "client" }, opts)) || this;
132
- _this.name = "ParameterGroupNotFoundFault";
133
- _this.$fault = "client";
134
- Object.setPrototypeOf(_this, ParameterGroupNotFoundFault.prototype);
135
- return _this;
126
+ }
127
+ export class ParameterGroupNotFoundFault extends __BaseException {
128
+ constructor(opts) {
129
+ super({
130
+ name: "ParameterGroupNotFoundFault",
131
+ $fault: "client",
132
+ ...opts,
133
+ });
134
+ this.name = "ParameterGroupNotFoundFault";
135
+ this.$fault = "client";
136
+ Object.setPrototypeOf(this, ParameterGroupNotFoundFault.prototype);
136
137
  }
137
- return ParameterGroupNotFoundFault;
138
- }(__BaseException));
139
- export { ParameterGroupNotFoundFault };
140
- var ServiceLinkedRoleNotFoundFault = (function (_super) {
141
- __extends(ServiceLinkedRoleNotFoundFault, _super);
142
- function ServiceLinkedRoleNotFoundFault(opts) {
143
- var _this = _super.call(this, __assign({ name: "ServiceLinkedRoleNotFoundFault", $fault: "client" }, opts)) || this;
144
- _this.name = "ServiceLinkedRoleNotFoundFault";
145
- _this.$fault = "client";
146
- Object.setPrototypeOf(_this, ServiceLinkedRoleNotFoundFault.prototype);
147
- return _this;
138
+ }
139
+ export class ServiceLinkedRoleNotFoundFault extends __BaseException {
140
+ constructor(opts) {
141
+ super({
142
+ name: "ServiceLinkedRoleNotFoundFault",
143
+ $fault: "client",
144
+ ...opts,
145
+ });
146
+ this.name = "ServiceLinkedRoleNotFoundFault";
147
+ this.$fault = "client";
148
+ Object.setPrototypeOf(this, ServiceLinkedRoleNotFoundFault.prototype);
148
149
  }
149
- return ServiceLinkedRoleNotFoundFault;
150
- }(__BaseException));
151
- export { ServiceLinkedRoleNotFoundFault };
152
- var ServiceQuotaExceededException = (function (_super) {
153
- __extends(ServiceQuotaExceededException, _super);
154
- function ServiceQuotaExceededException(opts) {
155
- var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
156
- _this.name = "ServiceQuotaExceededException";
157
- _this.$fault = "client";
158
- Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
159
- return _this;
150
+ }
151
+ export class ServiceQuotaExceededException extends __BaseException {
152
+ constructor(opts) {
153
+ super({
154
+ name: "ServiceQuotaExceededException",
155
+ $fault: "client",
156
+ ...opts,
157
+ });
158
+ this.name = "ServiceQuotaExceededException";
159
+ this.$fault = "client";
160
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
160
161
  }
161
- return ServiceQuotaExceededException;
162
- }(__BaseException));
163
- export { ServiceQuotaExceededException };
164
- var SubnetGroupNotFoundFault = (function (_super) {
165
- __extends(SubnetGroupNotFoundFault, _super);
166
- function SubnetGroupNotFoundFault(opts) {
167
- var _this = _super.call(this, __assign({ name: "SubnetGroupNotFoundFault", $fault: "client" }, opts)) || this;
168
- _this.name = "SubnetGroupNotFoundFault";
169
- _this.$fault = "client";
170
- Object.setPrototypeOf(_this, SubnetGroupNotFoundFault.prototype);
171
- return _this;
162
+ }
163
+ export class SubnetGroupNotFoundFault extends __BaseException {
164
+ constructor(opts) {
165
+ super({
166
+ name: "SubnetGroupNotFoundFault",
167
+ $fault: "client",
168
+ ...opts,
169
+ });
170
+ this.name = "SubnetGroupNotFoundFault";
171
+ this.$fault = "client";
172
+ Object.setPrototypeOf(this, SubnetGroupNotFoundFault.prototype);
172
173
  }
173
- return SubnetGroupNotFoundFault;
174
- }(__BaseException));
175
- export { SubnetGroupNotFoundFault };
176
- var TagQuotaPerResourceExceeded = (function (_super) {
177
- __extends(TagQuotaPerResourceExceeded, _super);
178
- function TagQuotaPerResourceExceeded(opts) {
179
- var _this = _super.call(this, __assign({ name: "TagQuotaPerResourceExceeded", $fault: "client" }, opts)) || this;
180
- _this.name = "TagQuotaPerResourceExceeded";
181
- _this.$fault = "client";
182
- Object.setPrototypeOf(_this, TagQuotaPerResourceExceeded.prototype);
183
- return _this;
174
+ }
175
+ export class TagQuotaPerResourceExceeded extends __BaseException {
176
+ constructor(opts) {
177
+ super({
178
+ name: "TagQuotaPerResourceExceeded",
179
+ $fault: "client",
180
+ ...opts,
181
+ });
182
+ this.name = "TagQuotaPerResourceExceeded";
183
+ this.$fault = "client";
184
+ Object.setPrototypeOf(this, TagQuotaPerResourceExceeded.prototype);
184
185
  }
185
- return TagQuotaPerResourceExceeded;
186
- }(__BaseException));
187
- export { TagQuotaPerResourceExceeded };
188
- var ParameterGroupAlreadyExistsFault = (function (_super) {
189
- __extends(ParameterGroupAlreadyExistsFault, _super);
190
- function ParameterGroupAlreadyExistsFault(opts) {
191
- var _this = _super.call(this, __assign({ name: "ParameterGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
192
- _this.name = "ParameterGroupAlreadyExistsFault";
193
- _this.$fault = "client";
194
- Object.setPrototypeOf(_this, ParameterGroupAlreadyExistsFault.prototype);
195
- return _this;
186
+ }
187
+ export class ParameterGroupAlreadyExistsFault extends __BaseException {
188
+ constructor(opts) {
189
+ super({
190
+ name: "ParameterGroupAlreadyExistsFault",
191
+ $fault: "client",
192
+ ...opts,
193
+ });
194
+ this.name = "ParameterGroupAlreadyExistsFault";
195
+ this.$fault = "client";
196
+ Object.setPrototypeOf(this, ParameterGroupAlreadyExistsFault.prototype);
196
197
  }
197
- return ParameterGroupAlreadyExistsFault;
198
- }(__BaseException));
199
- export { ParameterGroupAlreadyExistsFault };
200
- var ParameterGroupQuotaExceededFault = (function (_super) {
201
- __extends(ParameterGroupQuotaExceededFault, _super);
202
- function ParameterGroupQuotaExceededFault(opts) {
203
- var _this = _super.call(this, __assign({ name: "ParameterGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
204
- _this.name = "ParameterGroupQuotaExceededFault";
205
- _this.$fault = "client";
206
- Object.setPrototypeOf(_this, ParameterGroupQuotaExceededFault.prototype);
207
- return _this;
198
+ }
199
+ export class ParameterGroupQuotaExceededFault extends __BaseException {
200
+ constructor(opts) {
201
+ super({
202
+ name: "ParameterGroupQuotaExceededFault",
203
+ $fault: "client",
204
+ ...opts,
205
+ });
206
+ this.name = "ParameterGroupQuotaExceededFault";
207
+ this.$fault = "client";
208
+ Object.setPrototypeOf(this, ParameterGroupQuotaExceededFault.prototype);
208
209
  }
209
- return ParameterGroupQuotaExceededFault;
210
- }(__BaseException));
211
- export { ParameterGroupQuotaExceededFault };
212
- var InvalidSubnet = (function (_super) {
213
- __extends(InvalidSubnet, _super);
214
- function InvalidSubnet(opts) {
215
- var _this = _super.call(this, __assign({ name: "InvalidSubnet", $fault: "client" }, opts)) || this;
216
- _this.name = "InvalidSubnet";
217
- _this.$fault = "client";
218
- Object.setPrototypeOf(_this, InvalidSubnet.prototype);
219
- return _this;
210
+ }
211
+ export class InvalidSubnet extends __BaseException {
212
+ constructor(opts) {
213
+ super({
214
+ name: "InvalidSubnet",
215
+ $fault: "client",
216
+ ...opts,
217
+ });
218
+ this.name = "InvalidSubnet";
219
+ this.$fault = "client";
220
+ Object.setPrototypeOf(this, InvalidSubnet.prototype);
220
221
  }
221
- return InvalidSubnet;
222
- }(__BaseException));
223
- export { InvalidSubnet };
224
- var SubnetGroupAlreadyExistsFault = (function (_super) {
225
- __extends(SubnetGroupAlreadyExistsFault, _super);
226
- function SubnetGroupAlreadyExistsFault(opts) {
227
- var _this = _super.call(this, __assign({ name: "SubnetGroupAlreadyExistsFault", $fault: "client" }, opts)) || this;
228
- _this.name = "SubnetGroupAlreadyExistsFault";
229
- _this.$fault = "client";
230
- Object.setPrototypeOf(_this, SubnetGroupAlreadyExistsFault.prototype);
231
- return _this;
222
+ }
223
+ export class SubnetGroupAlreadyExistsFault extends __BaseException {
224
+ constructor(opts) {
225
+ super({
226
+ name: "SubnetGroupAlreadyExistsFault",
227
+ $fault: "client",
228
+ ...opts,
229
+ });
230
+ this.name = "SubnetGroupAlreadyExistsFault";
231
+ this.$fault = "client";
232
+ Object.setPrototypeOf(this, SubnetGroupAlreadyExistsFault.prototype);
232
233
  }
233
- return SubnetGroupAlreadyExistsFault;
234
- }(__BaseException));
235
- export { SubnetGroupAlreadyExistsFault };
236
- var SubnetGroupQuotaExceededFault = (function (_super) {
237
- __extends(SubnetGroupQuotaExceededFault, _super);
238
- function SubnetGroupQuotaExceededFault(opts) {
239
- var _this = _super.call(this, __assign({ name: "SubnetGroupQuotaExceededFault", $fault: "client" }, opts)) || this;
240
- _this.name = "SubnetGroupQuotaExceededFault";
241
- _this.$fault = "client";
242
- Object.setPrototypeOf(_this, SubnetGroupQuotaExceededFault.prototype);
243
- return _this;
234
+ }
235
+ export class SubnetGroupQuotaExceededFault extends __BaseException {
236
+ constructor(opts) {
237
+ super({
238
+ name: "SubnetGroupQuotaExceededFault",
239
+ $fault: "client",
240
+ ...opts,
241
+ });
242
+ this.name = "SubnetGroupQuotaExceededFault";
243
+ this.$fault = "client";
244
+ Object.setPrototypeOf(this, SubnetGroupQuotaExceededFault.prototype);
244
245
  }
245
- return SubnetGroupQuotaExceededFault;
246
- }(__BaseException));
247
- export { SubnetGroupQuotaExceededFault };
248
- var SubnetQuotaExceededFault = (function (_super) {
249
- __extends(SubnetQuotaExceededFault, _super);
250
- function SubnetQuotaExceededFault(opts) {
251
- var _this = _super.call(this, __assign({ name: "SubnetQuotaExceededFault", $fault: "client" }, opts)) || this;
252
- _this.name = "SubnetQuotaExceededFault";
253
- _this.$fault = "client";
254
- Object.setPrototypeOf(_this, SubnetQuotaExceededFault.prototype);
255
- return _this;
246
+ }
247
+ export class SubnetQuotaExceededFault extends __BaseException {
248
+ constructor(opts) {
249
+ super({
250
+ name: "SubnetQuotaExceededFault",
251
+ $fault: "client",
252
+ ...opts,
253
+ });
254
+ this.name = "SubnetQuotaExceededFault";
255
+ this.$fault = "client";
256
+ Object.setPrototypeOf(this, SubnetQuotaExceededFault.prototype);
256
257
  }
257
- return SubnetQuotaExceededFault;
258
- }(__BaseException));
259
- export { SubnetQuotaExceededFault };
260
- var ClusterNotFoundFault = (function (_super) {
261
- __extends(ClusterNotFoundFault, _super);
262
- function ClusterNotFoundFault(opts) {
263
- var _this = _super.call(this, __assign({ name: "ClusterNotFoundFault", $fault: "client" }, opts)) || this;
264
- _this.name = "ClusterNotFoundFault";
265
- _this.$fault = "client";
266
- Object.setPrototypeOf(_this, ClusterNotFoundFault.prototype);
267
- return _this;
258
+ }
259
+ export class ClusterNotFoundFault extends __BaseException {
260
+ constructor(opts) {
261
+ super({
262
+ name: "ClusterNotFoundFault",
263
+ $fault: "client",
264
+ ...opts,
265
+ });
266
+ this.name = "ClusterNotFoundFault";
267
+ this.$fault = "client";
268
+ Object.setPrototypeOf(this, ClusterNotFoundFault.prototype);
268
269
  }
269
- return ClusterNotFoundFault;
270
- }(__BaseException));
271
- export { ClusterNotFoundFault };
272
- var NodeNotFoundFault = (function (_super) {
273
- __extends(NodeNotFoundFault, _super);
274
- function NodeNotFoundFault(opts) {
275
- var _this = _super.call(this, __assign({ name: "NodeNotFoundFault", $fault: "client" }, opts)) || this;
276
- _this.name = "NodeNotFoundFault";
277
- _this.$fault = "client";
278
- Object.setPrototypeOf(_this, NodeNotFoundFault.prototype);
279
- return _this;
270
+ }
271
+ export class NodeNotFoundFault extends __BaseException {
272
+ constructor(opts) {
273
+ super({
274
+ name: "NodeNotFoundFault",
275
+ $fault: "client",
276
+ ...opts,
277
+ });
278
+ this.name = "NodeNotFoundFault";
279
+ this.$fault = "client";
280
+ Object.setPrototypeOf(this, NodeNotFoundFault.prototype);
280
281
  }
281
- return NodeNotFoundFault;
282
- }(__BaseException));
283
- export { NodeNotFoundFault };
284
- var SubnetGroupInUseFault = (function (_super) {
285
- __extends(SubnetGroupInUseFault, _super);
286
- function SubnetGroupInUseFault(opts) {
287
- var _this = _super.call(this, __assign({ name: "SubnetGroupInUseFault", $fault: "client" }, opts)) || this;
288
- _this.name = "SubnetGroupInUseFault";
289
- _this.$fault = "client";
290
- Object.setPrototypeOf(_this, SubnetGroupInUseFault.prototype);
291
- return _this;
282
+ }
283
+ export class SubnetGroupInUseFault extends __BaseException {
284
+ constructor(opts) {
285
+ super({
286
+ name: "SubnetGroupInUseFault",
287
+ $fault: "client",
288
+ ...opts,
289
+ });
290
+ this.name = "SubnetGroupInUseFault";
291
+ this.$fault = "client";
292
+ Object.setPrototypeOf(this, SubnetGroupInUseFault.prototype);
292
293
  }
293
- return SubnetGroupInUseFault;
294
- }(__BaseException));
295
- export { SubnetGroupInUseFault };
296
- var InvalidARNFault = (function (_super) {
297
- __extends(InvalidARNFault, _super);
298
- function InvalidARNFault(opts) {
299
- var _this = _super.call(this, __assign({ name: "InvalidARNFault", $fault: "client" }, opts)) || this;
300
- _this.name = "InvalidARNFault";
301
- _this.$fault = "client";
302
- Object.setPrototypeOf(_this, InvalidARNFault.prototype);
303
- return _this;
294
+ }
295
+ export class InvalidARNFault extends __BaseException {
296
+ constructor(opts) {
297
+ super({
298
+ name: "InvalidARNFault",
299
+ $fault: "client",
300
+ ...opts,
301
+ });
302
+ this.name = "InvalidARNFault";
303
+ this.$fault = "client";
304
+ Object.setPrototypeOf(this, InvalidARNFault.prototype);
304
305
  }
305
- return InvalidARNFault;
306
- }(__BaseException));
307
- export { InvalidARNFault };
308
- var TagNotFoundFault = (function (_super) {
309
- __extends(TagNotFoundFault, _super);
310
- function TagNotFoundFault(opts) {
311
- var _this = _super.call(this, __assign({ name: "TagNotFoundFault", $fault: "client" }, opts)) || this;
312
- _this.name = "TagNotFoundFault";
313
- _this.$fault = "client";
314
- Object.setPrototypeOf(_this, TagNotFoundFault.prototype);
315
- return _this;
306
+ }
307
+ export class TagNotFoundFault extends __BaseException {
308
+ constructor(opts) {
309
+ super({
310
+ name: "TagNotFoundFault",
311
+ $fault: "client",
312
+ ...opts,
313
+ });
314
+ this.name = "TagNotFoundFault";
315
+ this.$fault = "client";
316
+ Object.setPrototypeOf(this, TagNotFoundFault.prototype);
316
317
  }
317
- return TagNotFoundFault;
318
- }(__BaseException));
319
- export { TagNotFoundFault };
320
- var SubnetInUse = (function (_super) {
321
- __extends(SubnetInUse, _super);
322
- function SubnetInUse(opts) {
323
- var _this = _super.call(this, __assign({ name: "SubnetInUse", $fault: "client" }, opts)) || this;
324
- _this.name = "SubnetInUse";
325
- _this.$fault = "client";
326
- Object.setPrototypeOf(_this, SubnetInUse.prototype);
327
- return _this;
318
+ }
319
+ export class SubnetInUse extends __BaseException {
320
+ constructor(opts) {
321
+ super({
322
+ name: "SubnetInUse",
323
+ $fault: "client",
324
+ ...opts,
325
+ });
326
+ this.name = "SubnetInUse";
327
+ this.$fault = "client";
328
+ Object.setPrototypeOf(this, SubnetInUse.prototype);
328
329
  }
329
- return SubnetInUse;
330
- }(__BaseException));
331
- export { SubnetInUse };
332
- export var SSESpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
- export var CreateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
- export var EndpointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
- export var NodeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
- export var NotificationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
- export var ParameterGroupStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
- export var SecurityGroupMembershipFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
- export var SSEDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
- export var ClusterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var CreateClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var CreateParameterGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var ParameterGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
- export var CreateParameterGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var CreateSubnetGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var SubnetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
- export var SubnetGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
- export var CreateSubnetGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
- export var DecreaseReplicationFactorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
- export var DecreaseReplicationFactorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
- export var DeleteClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
- export var DeleteClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var DeleteParameterGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var DeleteParameterGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var DeleteSubnetGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var DeleteSubnetGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var DescribeClustersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var DescribeClustersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var DescribeDefaultParametersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var NodeTypeSpecificValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var ParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var DescribeDefaultParametersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var DescribeEventsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var EventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var DescribeEventsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var DescribeParameterGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var DescribeParameterGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var DescribeParametersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var DescribeParametersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var DescribeSubnetGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var DescribeSubnetGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
- export var IncreaseReplicationFactorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
374
- export var IncreaseReplicationFactorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
375
- export var ListTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
- export var ListTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
- export var RebootNodeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
378
- export var RebootNodeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
379
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
383
- export var UpdateClusterRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- export var UpdateClusterResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
- export var ParameterNameValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
- export var UpdateParameterGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
- export var UpdateParameterGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
388
- export var UpdateSubnetGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
389
- export var UpdateSubnetGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
+ }
331
+ export const SSESpecificationFilterSensitiveLog = (obj) => ({
332
+ ...obj,
333
+ });
334
+ export const TagFilterSensitiveLog = (obj) => ({
335
+ ...obj,
336
+ });
337
+ export const CreateClusterRequestFilterSensitiveLog = (obj) => ({
338
+ ...obj,
339
+ });
340
+ export const EndpointFilterSensitiveLog = (obj) => ({
341
+ ...obj,
342
+ });
343
+ export const NodeFilterSensitiveLog = (obj) => ({
344
+ ...obj,
345
+ });
346
+ export const NotificationConfigurationFilterSensitiveLog = (obj) => ({
347
+ ...obj,
348
+ });
349
+ export const ParameterGroupStatusFilterSensitiveLog = (obj) => ({
350
+ ...obj,
351
+ });
352
+ export const SecurityGroupMembershipFilterSensitiveLog = (obj) => ({
353
+ ...obj,
354
+ });
355
+ export const SSEDescriptionFilterSensitiveLog = (obj) => ({
356
+ ...obj,
357
+ });
358
+ export const ClusterFilterSensitiveLog = (obj) => ({
359
+ ...obj,
360
+ });
361
+ export const CreateClusterResponseFilterSensitiveLog = (obj) => ({
362
+ ...obj,
363
+ });
364
+ export const CreateParameterGroupRequestFilterSensitiveLog = (obj) => ({
365
+ ...obj,
366
+ });
367
+ export const ParameterGroupFilterSensitiveLog = (obj) => ({
368
+ ...obj,
369
+ });
370
+ export const CreateParameterGroupResponseFilterSensitiveLog = (obj) => ({
371
+ ...obj,
372
+ });
373
+ export const CreateSubnetGroupRequestFilterSensitiveLog = (obj) => ({
374
+ ...obj,
375
+ });
376
+ export const SubnetFilterSensitiveLog = (obj) => ({
377
+ ...obj,
378
+ });
379
+ export const SubnetGroupFilterSensitiveLog = (obj) => ({
380
+ ...obj,
381
+ });
382
+ export const CreateSubnetGroupResponseFilterSensitiveLog = (obj) => ({
383
+ ...obj,
384
+ });
385
+ export const DecreaseReplicationFactorRequestFilterSensitiveLog = (obj) => ({
386
+ ...obj,
387
+ });
388
+ export const DecreaseReplicationFactorResponseFilterSensitiveLog = (obj) => ({
389
+ ...obj,
390
+ });
391
+ export const DeleteClusterRequestFilterSensitiveLog = (obj) => ({
392
+ ...obj,
393
+ });
394
+ export const DeleteClusterResponseFilterSensitiveLog = (obj) => ({
395
+ ...obj,
396
+ });
397
+ export const DeleteParameterGroupRequestFilterSensitiveLog = (obj) => ({
398
+ ...obj,
399
+ });
400
+ export const DeleteParameterGroupResponseFilterSensitiveLog = (obj) => ({
401
+ ...obj,
402
+ });
403
+ export const DeleteSubnetGroupRequestFilterSensitiveLog = (obj) => ({
404
+ ...obj,
405
+ });
406
+ export const DeleteSubnetGroupResponseFilterSensitiveLog = (obj) => ({
407
+ ...obj,
408
+ });
409
+ export const DescribeClustersRequestFilterSensitiveLog = (obj) => ({
410
+ ...obj,
411
+ });
412
+ export const DescribeClustersResponseFilterSensitiveLog = (obj) => ({
413
+ ...obj,
414
+ });
415
+ export const DescribeDefaultParametersRequestFilterSensitiveLog = (obj) => ({
416
+ ...obj,
417
+ });
418
+ export const NodeTypeSpecificValueFilterSensitiveLog = (obj) => ({
419
+ ...obj,
420
+ });
421
+ export const ParameterFilterSensitiveLog = (obj) => ({
422
+ ...obj,
423
+ });
424
+ export const DescribeDefaultParametersResponseFilterSensitiveLog = (obj) => ({
425
+ ...obj,
426
+ });
427
+ export const DescribeEventsRequestFilterSensitiveLog = (obj) => ({
428
+ ...obj,
429
+ });
430
+ export const EventFilterSensitiveLog = (obj) => ({
431
+ ...obj,
432
+ });
433
+ export const DescribeEventsResponseFilterSensitiveLog = (obj) => ({
434
+ ...obj,
435
+ });
436
+ export const DescribeParameterGroupsRequestFilterSensitiveLog = (obj) => ({
437
+ ...obj,
438
+ });
439
+ export const DescribeParameterGroupsResponseFilterSensitiveLog = (obj) => ({
440
+ ...obj,
441
+ });
442
+ export const DescribeParametersRequestFilterSensitiveLog = (obj) => ({
443
+ ...obj,
444
+ });
445
+ export const DescribeParametersResponseFilterSensitiveLog = (obj) => ({
446
+ ...obj,
447
+ });
448
+ export const DescribeSubnetGroupsRequestFilterSensitiveLog = (obj) => ({
449
+ ...obj,
450
+ });
451
+ export const DescribeSubnetGroupsResponseFilterSensitiveLog = (obj) => ({
452
+ ...obj,
453
+ });
454
+ export const IncreaseReplicationFactorRequestFilterSensitiveLog = (obj) => ({
455
+ ...obj,
456
+ });
457
+ export const IncreaseReplicationFactorResponseFilterSensitiveLog = (obj) => ({
458
+ ...obj,
459
+ });
460
+ export const ListTagsRequestFilterSensitiveLog = (obj) => ({
461
+ ...obj,
462
+ });
463
+ export const ListTagsResponseFilterSensitiveLog = (obj) => ({
464
+ ...obj,
465
+ });
466
+ export const RebootNodeRequestFilterSensitiveLog = (obj) => ({
467
+ ...obj,
468
+ });
469
+ export const RebootNodeResponseFilterSensitiveLog = (obj) => ({
470
+ ...obj,
471
+ });
472
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
473
+ ...obj,
474
+ });
475
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
476
+ ...obj,
477
+ });
478
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
479
+ ...obj,
480
+ });
481
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
482
+ ...obj,
483
+ });
484
+ export const UpdateClusterRequestFilterSensitiveLog = (obj) => ({
485
+ ...obj,
486
+ });
487
+ export const UpdateClusterResponseFilterSensitiveLog = (obj) => ({
488
+ ...obj,
489
+ });
490
+ export const ParameterNameValueFilterSensitiveLog = (obj) => ({
491
+ ...obj,
492
+ });
493
+ export const UpdateParameterGroupRequestFilterSensitiveLog = (obj) => ({
494
+ ...obj,
495
+ });
496
+ export const UpdateParameterGroupResponseFilterSensitiveLog = (obj) => ({
497
+ ...obj,
498
+ });
499
+ export const UpdateSubnetGroupRequestFilterSensitiveLog = (obj) => ({
500
+ ...obj,
501
+ });
502
+ export const UpdateSubnetGroupResponseFilterSensitiveLog = (obj) => ({
503
+ ...obj,
504
+ });