@aws-sdk/client-dax 3.185.0 → 3.188.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.
- package/CHANGELOG.md +16 -0
- package/dist-es/DAX.js +86 -93
- package/dist-es/DAXClient.js +22 -28
- package/dist-es/commands/CreateClusterCommand.js +21 -28
- package/dist-es/commands/CreateParameterGroupCommand.js +21 -28
- package/dist-es/commands/CreateSubnetGroupCommand.js +21 -28
- package/dist-es/commands/DecreaseReplicationFactorCommand.js +21 -28
- package/dist-es/commands/DeleteClusterCommand.js +21 -28
- package/dist-es/commands/DeleteParameterGroupCommand.js +21 -28
- package/dist-es/commands/DeleteSubnetGroupCommand.js +21 -28
- package/dist-es/commands/DescribeClustersCommand.js +21 -28
- package/dist-es/commands/DescribeDefaultParametersCommand.js +21 -28
- package/dist-es/commands/DescribeEventsCommand.js +21 -28
- package/dist-es/commands/DescribeParameterGroupsCommand.js +21 -28
- package/dist-es/commands/DescribeParametersCommand.js +21 -28
- package/dist-es/commands/DescribeSubnetGroupsCommand.js +21 -28
- package/dist-es/commands/IncreaseReplicationFactorCommand.js +21 -28
- package/dist-es/commands/ListTagsCommand.js +21 -28
- package/dist-es/commands/RebootNodeCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateClusterCommand.js +21 -28
- package/dist-es/commands/UpdateParameterGroupCommand.js +21 -28
- package/dist-es/commands/UpdateSubnetGroupCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/DAXServiceException.js +5 -10
- package/dist-es/models/models_0.js +471 -356
- package/dist-es/protocols/Aws_json1_1.js +1776 -2216
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,389 +1,504 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { DAXServiceException as __BaseException } from "./DAXServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
-
|
|
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
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
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
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
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
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
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
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
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
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
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
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
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
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
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
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
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
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
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
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
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
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
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
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
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
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
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
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
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
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
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
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
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
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
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
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
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
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
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
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
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
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
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
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
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
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
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
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
export
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
export
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
export
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
export
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
export
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
export
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
export
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
export
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
export
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
export
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
export
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
export
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
export
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
export
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
export
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
export
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
export
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
export
|
|
388
|
-
|
|
389
|
-
|
|
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
|
+
});
|