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