@aws-sdk/client-efs 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/EFS.js +129 -122
- package/dist-es/EFSClient.js +28 -22
- package/dist-es/commands/CreateAccessPointCommand.js +28 -21
- package/dist-es/commands/CreateFileSystemCommand.js +28 -21
- package/dist-es/commands/CreateMountTargetCommand.js +28 -21
- package/dist-es/commands/CreateReplicationConfigurationCommand.js +28 -21
- package/dist-es/commands/CreateTagsCommand.js +29 -22
- package/dist-es/commands/DeleteAccessPointCommand.js +29 -22
- package/dist-es/commands/DeleteFileSystemCommand.js +29 -22
- package/dist-es/commands/DeleteFileSystemPolicyCommand.js +29 -22
- package/dist-es/commands/DeleteMountTargetCommand.js +29 -22
- package/dist-es/commands/DeleteReplicationConfigurationCommand.js +29 -22
- package/dist-es/commands/DeleteTagsCommand.js +29 -22
- package/dist-es/commands/DescribeAccessPointsCommand.js +28 -21
- package/dist-es/commands/DescribeAccountPreferencesCommand.js +28 -21
- package/dist-es/commands/DescribeBackupPolicyCommand.js +28 -21
- package/dist-es/commands/DescribeFileSystemPolicyCommand.js +28 -21
- package/dist-es/commands/DescribeFileSystemsCommand.js +28 -21
- package/dist-es/commands/DescribeLifecycleConfigurationCommand.js +28 -21
- package/dist-es/commands/DescribeMountTargetSecurityGroupsCommand.js +28 -21
- package/dist-es/commands/DescribeMountTargetsCommand.js +28 -21
- package/dist-es/commands/DescribeReplicationConfigurationsCommand.js +28 -21
- package/dist-es/commands/DescribeTagsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ModifyMountTargetSecurityGroupsCommand.js +29 -22
- package/dist-es/commands/PutAccountPreferencesCommand.js +28 -21
- package/dist-es/commands/PutBackupPolicyCommand.js +28 -21
- package/dist-es/commands/PutFileSystemPolicyCommand.js +28 -21
- package/dist-es/commands/PutLifecycleConfigurationCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +29 -22
- package/dist-es/commands/UntagResourceCommand.js +29 -22
- package/dist-es/commands/UpdateFileSystemCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/EFSServiceException.js +10 -5
- package/dist-es/models/models_0.js +449 -560
- package/dist-es/pagination/DescribeAccessPointsPaginator.js +68 -25
- package/dist-es/pagination/DescribeFileSystemsPaginator.js +68 -25
- package/dist-es/pagination/DescribeTagsPaginator.js +68 -25
- package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3544 -2632
- 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 +5 -5
|
@@ -1,19 +1,20 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { EFSServiceException as __BaseException } from "./EFSServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
this.AccessPointId = opts.AccessPointId;
|
|
3
|
+
var AccessPointAlreadyExists = (function (_super) {
|
|
4
|
+
__extends(AccessPointAlreadyExists, _super);
|
|
5
|
+
function AccessPointAlreadyExists(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessPointAlreadyExists", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessPointAlreadyExists";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessPointAlreadyExists.prototype);
|
|
10
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
_this.AccessPointId = opts.AccessPointId;
|
|
13
|
+
return _this;
|
|
15
14
|
}
|
|
16
|
-
|
|
15
|
+
return AccessPointAlreadyExists;
|
|
16
|
+
}(__BaseException));
|
|
17
|
+
export { AccessPointAlreadyExists };
|
|
17
18
|
export var LifeCycleState;
|
|
18
19
|
(function (LifeCycleState) {
|
|
19
20
|
LifeCycleState["AVAILABLE"] = "available";
|
|
@@ -23,48 +24,48 @@ export var LifeCycleState;
|
|
|
23
24
|
LifeCycleState["ERROR"] = "error";
|
|
24
25
|
LifeCycleState["UPDATING"] = "updating";
|
|
25
26
|
})(LifeCycleState || (LifeCycleState = {}));
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
this.ErrorCode = opts.ErrorCode;
|
|
37
|
-
this.Message = opts.Message;
|
|
27
|
+
var AccessPointLimitExceeded = (function (_super) {
|
|
28
|
+
__extends(AccessPointLimitExceeded, _super);
|
|
29
|
+
function AccessPointLimitExceeded(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "AccessPointLimitExceeded", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "AccessPointLimitExceeded";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, AccessPointLimitExceeded.prototype);
|
|
34
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
35
|
+
_this.Message = opts.Message;
|
|
36
|
+
return _this;
|
|
38
37
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
38
|
+
return AccessPointLimitExceeded;
|
|
39
|
+
}(__BaseException));
|
|
40
|
+
export { AccessPointLimitExceeded };
|
|
41
|
+
var AccessPointNotFound = (function (_super) {
|
|
42
|
+
__extends(AccessPointNotFound, _super);
|
|
43
|
+
function AccessPointNotFound(opts) {
|
|
44
|
+
var _this = _super.call(this, __assign({ name: "AccessPointNotFound", $fault: "client" }, opts)) || this;
|
|
45
|
+
_this.name = "AccessPointNotFound";
|
|
46
|
+
_this.$fault = "client";
|
|
47
|
+
Object.setPrototypeOf(_this, AccessPointNotFound.prototype);
|
|
48
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
49
|
+
_this.Message = opts.Message;
|
|
50
|
+
return _this;
|
|
52
51
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
52
|
+
return AccessPointNotFound;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { AccessPointNotFound };
|
|
55
|
+
var AvailabilityZonesMismatch = (function (_super) {
|
|
56
|
+
__extends(AvailabilityZonesMismatch, _super);
|
|
57
|
+
function AvailabilityZonesMismatch(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "AvailabilityZonesMismatch", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "AvailabilityZonesMismatch";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, AvailabilityZonesMismatch.prototype);
|
|
62
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
63
|
+
_this.Message = opts.Message;
|
|
64
|
+
return _this;
|
|
66
65
|
}
|
|
67
|
-
|
|
66
|
+
return AvailabilityZonesMismatch;
|
|
67
|
+
}(__BaseException));
|
|
68
|
+
export { AvailabilityZonesMismatch };
|
|
68
69
|
export var Status;
|
|
69
70
|
(function (Status) {
|
|
70
71
|
Status["DISABLED"] = "DISABLED";
|
|
@@ -72,76 +73,76 @@ export var Status;
|
|
|
72
73
|
Status["ENABLED"] = "ENABLED";
|
|
73
74
|
Status["ENABLING"] = "ENABLING";
|
|
74
75
|
})(Status || (Status = {}));
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
this.ErrorCode = opts.ErrorCode;
|
|
86
|
-
this.Message = opts.Message;
|
|
76
|
+
var BadRequest = (function (_super) {
|
|
77
|
+
__extends(BadRequest, _super);
|
|
78
|
+
function BadRequest(opts) {
|
|
79
|
+
var _this = _super.call(this, __assign({ name: "BadRequest", $fault: "client" }, opts)) || this;
|
|
80
|
+
_this.name = "BadRequest";
|
|
81
|
+
_this.$fault = "client";
|
|
82
|
+
Object.setPrototypeOf(_this, BadRequest.prototype);
|
|
83
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
84
|
+
_this.Message = opts.Message;
|
|
85
|
+
return _this;
|
|
87
86
|
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
87
|
+
return BadRequest;
|
|
88
|
+
}(__BaseException));
|
|
89
|
+
export { BadRequest };
|
|
90
|
+
var FileSystemNotFound = (function (_super) {
|
|
91
|
+
__extends(FileSystemNotFound, _super);
|
|
92
|
+
function FileSystemNotFound(opts) {
|
|
93
|
+
var _this = _super.call(this, __assign({ name: "FileSystemNotFound", $fault: "client" }, opts)) || this;
|
|
94
|
+
_this.name = "FileSystemNotFound";
|
|
95
|
+
_this.$fault = "client";
|
|
96
|
+
Object.setPrototypeOf(_this, FileSystemNotFound.prototype);
|
|
97
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
98
|
+
_this.Message = opts.Message;
|
|
99
|
+
return _this;
|
|
101
100
|
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
101
|
+
return FileSystemNotFound;
|
|
102
|
+
}(__BaseException));
|
|
103
|
+
export { FileSystemNotFound };
|
|
104
|
+
var IncorrectFileSystemLifeCycleState = (function (_super) {
|
|
105
|
+
__extends(IncorrectFileSystemLifeCycleState, _super);
|
|
106
|
+
function IncorrectFileSystemLifeCycleState(opts) {
|
|
107
|
+
var _this = _super.call(this, __assign({ name: "IncorrectFileSystemLifeCycleState", $fault: "client" }, opts)) || this;
|
|
108
|
+
_this.name = "IncorrectFileSystemLifeCycleState";
|
|
109
|
+
_this.$fault = "client";
|
|
110
|
+
Object.setPrototypeOf(_this, IncorrectFileSystemLifeCycleState.prototype);
|
|
111
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
112
|
+
_this.Message = opts.Message;
|
|
113
|
+
return _this;
|
|
115
114
|
}
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
115
|
+
return IncorrectFileSystemLifeCycleState;
|
|
116
|
+
}(__BaseException));
|
|
117
|
+
export { IncorrectFileSystemLifeCycleState };
|
|
118
|
+
var InternalServerError = (function (_super) {
|
|
119
|
+
__extends(InternalServerError, _super);
|
|
120
|
+
function InternalServerError(opts) {
|
|
121
|
+
var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
|
|
122
|
+
_this.name = "InternalServerError";
|
|
123
|
+
_this.$fault = "server";
|
|
124
|
+
Object.setPrototypeOf(_this, InternalServerError.prototype);
|
|
125
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
126
|
+
_this.Message = opts.Message;
|
|
127
|
+
return _this;
|
|
129
128
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
129
|
+
return InternalServerError;
|
|
130
|
+
}(__BaseException));
|
|
131
|
+
export { InternalServerError };
|
|
132
|
+
var ThrottlingException = (function (_super) {
|
|
133
|
+
__extends(ThrottlingException, _super);
|
|
134
|
+
function ThrottlingException(opts) {
|
|
135
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
136
|
+
_this.name = "ThrottlingException";
|
|
137
|
+
_this.$fault = "client";
|
|
138
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
139
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
140
|
+
_this.Message = opts.Message;
|
|
141
|
+
return _this;
|
|
143
142
|
}
|
|
144
|
-
|
|
143
|
+
return ThrottlingException;
|
|
144
|
+
}(__BaseException));
|
|
145
|
+
export { ThrottlingException };
|
|
145
146
|
export var PerformanceMode;
|
|
146
147
|
(function (PerformanceMode) {
|
|
147
148
|
PerformanceMode["GENERAL_PURPOSE"] = "generalPurpose";
|
|
@@ -152,175 +153,175 @@ export var ThroughputMode;
|
|
|
152
153
|
ThroughputMode["BURSTING"] = "bursting";
|
|
153
154
|
ThroughputMode["PROVISIONED"] = "provisioned";
|
|
154
155
|
})(ThroughputMode || (ThroughputMode = {}));
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
this.Message = opts.Message;
|
|
167
|
-
this.FileSystemId = opts.FileSystemId;
|
|
156
|
+
var FileSystemAlreadyExists = (function (_super) {
|
|
157
|
+
__extends(FileSystemAlreadyExists, _super);
|
|
158
|
+
function FileSystemAlreadyExists(opts) {
|
|
159
|
+
var _this = _super.call(this, __assign({ name: "FileSystemAlreadyExists", $fault: "client" }, opts)) || this;
|
|
160
|
+
_this.name = "FileSystemAlreadyExists";
|
|
161
|
+
_this.$fault = "client";
|
|
162
|
+
Object.setPrototypeOf(_this, FileSystemAlreadyExists.prototype);
|
|
163
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
164
|
+
_this.Message = opts.Message;
|
|
165
|
+
_this.FileSystemId = opts.FileSystemId;
|
|
166
|
+
return _this;
|
|
168
167
|
}
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
168
|
+
return FileSystemAlreadyExists;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { FileSystemAlreadyExists };
|
|
171
|
+
var FileSystemLimitExceeded = (function (_super) {
|
|
172
|
+
__extends(FileSystemLimitExceeded, _super);
|
|
173
|
+
function FileSystemLimitExceeded(opts) {
|
|
174
|
+
var _this = _super.call(this, __assign({ name: "FileSystemLimitExceeded", $fault: "client" }, opts)) || this;
|
|
175
|
+
_this.name = "FileSystemLimitExceeded";
|
|
176
|
+
_this.$fault = "client";
|
|
177
|
+
Object.setPrototypeOf(_this, FileSystemLimitExceeded.prototype);
|
|
178
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
179
|
+
_this.Message = opts.Message;
|
|
180
|
+
return _this;
|
|
182
181
|
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
182
|
+
return FileSystemLimitExceeded;
|
|
183
|
+
}(__BaseException));
|
|
184
|
+
export { FileSystemLimitExceeded };
|
|
185
|
+
var InsufficientThroughputCapacity = (function (_super) {
|
|
186
|
+
__extends(InsufficientThroughputCapacity, _super);
|
|
187
|
+
function InsufficientThroughputCapacity(opts) {
|
|
188
|
+
var _this = _super.call(this, __assign({ name: "InsufficientThroughputCapacity", $fault: "server" }, opts)) || this;
|
|
189
|
+
_this.name = "InsufficientThroughputCapacity";
|
|
190
|
+
_this.$fault = "server";
|
|
191
|
+
Object.setPrototypeOf(_this, InsufficientThroughputCapacity.prototype);
|
|
192
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
193
|
+
_this.Message = opts.Message;
|
|
194
|
+
return _this;
|
|
196
195
|
}
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
196
|
+
return InsufficientThroughputCapacity;
|
|
197
|
+
}(__BaseException));
|
|
198
|
+
export { InsufficientThroughputCapacity };
|
|
199
|
+
var ThroughputLimitExceeded = (function (_super) {
|
|
200
|
+
__extends(ThroughputLimitExceeded, _super);
|
|
201
|
+
function ThroughputLimitExceeded(opts) {
|
|
202
|
+
var _this = _super.call(this, __assign({ name: "ThroughputLimitExceeded", $fault: "client" }, opts)) || this;
|
|
203
|
+
_this.name = "ThroughputLimitExceeded";
|
|
204
|
+
_this.$fault = "client";
|
|
205
|
+
Object.setPrototypeOf(_this, ThroughputLimitExceeded.prototype);
|
|
206
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
207
|
+
_this.Message = opts.Message;
|
|
208
|
+
return _this;
|
|
210
209
|
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
210
|
+
return ThroughputLimitExceeded;
|
|
211
|
+
}(__BaseException));
|
|
212
|
+
export { ThroughputLimitExceeded };
|
|
213
|
+
var UnsupportedAvailabilityZone = (function (_super) {
|
|
214
|
+
__extends(UnsupportedAvailabilityZone, _super);
|
|
215
|
+
function UnsupportedAvailabilityZone(opts) {
|
|
216
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedAvailabilityZone", $fault: "client" }, opts)) || this;
|
|
217
|
+
_this.name = "UnsupportedAvailabilityZone";
|
|
218
|
+
_this.$fault = "client";
|
|
219
|
+
Object.setPrototypeOf(_this, UnsupportedAvailabilityZone.prototype);
|
|
220
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
221
|
+
_this.Message = opts.Message;
|
|
222
|
+
return _this;
|
|
224
223
|
}
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
224
|
+
return UnsupportedAvailabilityZone;
|
|
225
|
+
}(__BaseException));
|
|
226
|
+
export { UnsupportedAvailabilityZone };
|
|
227
|
+
var IpAddressInUse = (function (_super) {
|
|
228
|
+
__extends(IpAddressInUse, _super);
|
|
229
|
+
function IpAddressInUse(opts) {
|
|
230
|
+
var _this = _super.call(this, __assign({ name: "IpAddressInUse", $fault: "client" }, opts)) || this;
|
|
231
|
+
_this.name = "IpAddressInUse";
|
|
232
|
+
_this.$fault = "client";
|
|
233
|
+
Object.setPrototypeOf(_this, IpAddressInUse.prototype);
|
|
234
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
235
|
+
_this.Message = opts.Message;
|
|
236
|
+
return _this;
|
|
238
237
|
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
238
|
+
return IpAddressInUse;
|
|
239
|
+
}(__BaseException));
|
|
240
|
+
export { IpAddressInUse };
|
|
241
|
+
var MountTargetConflict = (function (_super) {
|
|
242
|
+
__extends(MountTargetConflict, _super);
|
|
243
|
+
function MountTargetConflict(opts) {
|
|
244
|
+
var _this = _super.call(this, __assign({ name: "MountTargetConflict", $fault: "client" }, opts)) || this;
|
|
245
|
+
_this.name = "MountTargetConflict";
|
|
246
|
+
_this.$fault = "client";
|
|
247
|
+
Object.setPrototypeOf(_this, MountTargetConflict.prototype);
|
|
248
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
249
|
+
_this.Message = opts.Message;
|
|
250
|
+
return _this;
|
|
252
251
|
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
252
|
+
return MountTargetConflict;
|
|
253
|
+
}(__BaseException));
|
|
254
|
+
export { MountTargetConflict };
|
|
255
|
+
var NetworkInterfaceLimitExceeded = (function (_super) {
|
|
256
|
+
__extends(NetworkInterfaceLimitExceeded, _super);
|
|
257
|
+
function NetworkInterfaceLimitExceeded(opts) {
|
|
258
|
+
var _this = _super.call(this, __assign({ name: "NetworkInterfaceLimitExceeded", $fault: "client" }, opts)) || this;
|
|
259
|
+
_this.name = "NetworkInterfaceLimitExceeded";
|
|
260
|
+
_this.$fault = "client";
|
|
261
|
+
Object.setPrototypeOf(_this, NetworkInterfaceLimitExceeded.prototype);
|
|
262
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
263
|
+
_this.Message = opts.Message;
|
|
264
|
+
return _this;
|
|
266
265
|
}
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
266
|
+
return NetworkInterfaceLimitExceeded;
|
|
267
|
+
}(__BaseException));
|
|
268
|
+
export { NetworkInterfaceLimitExceeded };
|
|
269
|
+
var NoFreeAddressesInSubnet = (function (_super) {
|
|
270
|
+
__extends(NoFreeAddressesInSubnet, _super);
|
|
271
|
+
function NoFreeAddressesInSubnet(opts) {
|
|
272
|
+
var _this = _super.call(this, __assign({ name: "NoFreeAddressesInSubnet", $fault: "client" }, opts)) || this;
|
|
273
|
+
_this.name = "NoFreeAddressesInSubnet";
|
|
274
|
+
_this.$fault = "client";
|
|
275
|
+
Object.setPrototypeOf(_this, NoFreeAddressesInSubnet.prototype);
|
|
276
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
277
|
+
_this.Message = opts.Message;
|
|
278
|
+
return _this;
|
|
280
279
|
}
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
280
|
+
return NoFreeAddressesInSubnet;
|
|
281
|
+
}(__BaseException));
|
|
282
|
+
export { NoFreeAddressesInSubnet };
|
|
283
|
+
var SecurityGroupLimitExceeded = (function (_super) {
|
|
284
|
+
__extends(SecurityGroupLimitExceeded, _super);
|
|
285
|
+
function SecurityGroupLimitExceeded(opts) {
|
|
286
|
+
var _this = _super.call(this, __assign({ name: "SecurityGroupLimitExceeded", $fault: "client" }, opts)) || this;
|
|
287
|
+
_this.name = "SecurityGroupLimitExceeded";
|
|
288
|
+
_this.$fault = "client";
|
|
289
|
+
Object.setPrototypeOf(_this, SecurityGroupLimitExceeded.prototype);
|
|
290
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
291
|
+
_this.Message = opts.Message;
|
|
292
|
+
return _this;
|
|
294
293
|
}
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
294
|
+
return SecurityGroupLimitExceeded;
|
|
295
|
+
}(__BaseException));
|
|
296
|
+
export { SecurityGroupLimitExceeded };
|
|
297
|
+
var SecurityGroupNotFound = (function (_super) {
|
|
298
|
+
__extends(SecurityGroupNotFound, _super);
|
|
299
|
+
function SecurityGroupNotFound(opts) {
|
|
300
|
+
var _this = _super.call(this, __assign({ name: "SecurityGroupNotFound", $fault: "client" }, opts)) || this;
|
|
301
|
+
_this.name = "SecurityGroupNotFound";
|
|
302
|
+
_this.$fault = "client";
|
|
303
|
+
Object.setPrototypeOf(_this, SecurityGroupNotFound.prototype);
|
|
304
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
305
|
+
_this.Message = opts.Message;
|
|
306
|
+
return _this;
|
|
308
307
|
}
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
308
|
+
return SecurityGroupNotFound;
|
|
309
|
+
}(__BaseException));
|
|
310
|
+
export { SecurityGroupNotFound };
|
|
311
|
+
var SubnetNotFound = (function (_super) {
|
|
312
|
+
__extends(SubnetNotFound, _super);
|
|
313
|
+
function SubnetNotFound(opts) {
|
|
314
|
+
var _this = _super.call(this, __assign({ name: "SubnetNotFound", $fault: "client" }, opts)) || this;
|
|
315
|
+
_this.name = "SubnetNotFound";
|
|
316
|
+
_this.$fault = "client";
|
|
317
|
+
Object.setPrototypeOf(_this, SubnetNotFound.prototype);
|
|
318
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
319
|
+
_this.Message = opts.Message;
|
|
320
|
+
return _this;
|
|
322
321
|
}
|
|
323
|
-
|
|
322
|
+
return SubnetNotFound;
|
|
323
|
+
}(__BaseException));
|
|
324
|
+
export { SubnetNotFound };
|
|
324
325
|
export var ReplicationStatus;
|
|
325
326
|
(function (ReplicationStatus) {
|
|
326
327
|
ReplicationStatus["DELETING"] = "DELETING";
|
|
@@ -328,76 +329,76 @@ export var ReplicationStatus;
|
|
|
328
329
|
ReplicationStatus["ENABLING"] = "ENABLING";
|
|
329
330
|
ReplicationStatus["ERROR"] = "ERROR";
|
|
330
331
|
})(ReplicationStatus || (ReplicationStatus = {}));
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
this.ErrorCode = opts.ErrorCode;
|
|
342
|
-
this.Message = opts.Message;
|
|
332
|
+
var ReplicationNotFound = (function (_super) {
|
|
333
|
+
__extends(ReplicationNotFound, _super);
|
|
334
|
+
function ReplicationNotFound(opts) {
|
|
335
|
+
var _this = _super.call(this, __assign({ name: "ReplicationNotFound", $fault: "client" }, opts)) || this;
|
|
336
|
+
_this.name = "ReplicationNotFound";
|
|
337
|
+
_this.$fault = "client";
|
|
338
|
+
Object.setPrototypeOf(_this, ReplicationNotFound.prototype);
|
|
339
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
340
|
+
_this.Message = opts.Message;
|
|
341
|
+
return _this;
|
|
343
342
|
}
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
343
|
+
return ReplicationNotFound;
|
|
344
|
+
}(__BaseException));
|
|
345
|
+
export { ReplicationNotFound };
|
|
346
|
+
var ValidationException = (function (_super) {
|
|
347
|
+
__extends(ValidationException, _super);
|
|
348
|
+
function ValidationException(opts) {
|
|
349
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
350
|
+
_this.name = "ValidationException";
|
|
351
|
+
_this.$fault = "client";
|
|
352
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
353
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
354
|
+
_this.Message = opts.Message;
|
|
355
|
+
return _this;
|
|
357
356
|
}
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
357
|
+
return ValidationException;
|
|
358
|
+
}(__BaseException));
|
|
359
|
+
export { ValidationException };
|
|
360
|
+
var FileSystemInUse = (function (_super) {
|
|
361
|
+
__extends(FileSystemInUse, _super);
|
|
362
|
+
function FileSystemInUse(opts) {
|
|
363
|
+
var _this = _super.call(this, __assign({ name: "FileSystemInUse", $fault: "client" }, opts)) || this;
|
|
364
|
+
_this.name = "FileSystemInUse";
|
|
365
|
+
_this.$fault = "client";
|
|
366
|
+
Object.setPrototypeOf(_this, FileSystemInUse.prototype);
|
|
367
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
368
|
+
_this.Message = opts.Message;
|
|
369
|
+
return _this;
|
|
371
370
|
}
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
371
|
+
return FileSystemInUse;
|
|
372
|
+
}(__BaseException));
|
|
373
|
+
export { FileSystemInUse };
|
|
374
|
+
var DependencyTimeout = (function (_super) {
|
|
375
|
+
__extends(DependencyTimeout, _super);
|
|
376
|
+
function DependencyTimeout(opts) {
|
|
377
|
+
var _this = _super.call(this, __assign({ name: "DependencyTimeout", $fault: "server" }, opts)) || this;
|
|
378
|
+
_this.name = "DependencyTimeout";
|
|
379
|
+
_this.$fault = "server";
|
|
380
|
+
Object.setPrototypeOf(_this, DependencyTimeout.prototype);
|
|
381
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
382
|
+
_this.Message = opts.Message;
|
|
383
|
+
return _this;
|
|
385
384
|
}
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
385
|
+
return DependencyTimeout;
|
|
386
|
+
}(__BaseException));
|
|
387
|
+
export { DependencyTimeout };
|
|
388
|
+
var MountTargetNotFound = (function (_super) {
|
|
389
|
+
__extends(MountTargetNotFound, _super);
|
|
390
|
+
function MountTargetNotFound(opts) {
|
|
391
|
+
var _this = _super.call(this, __assign({ name: "MountTargetNotFound", $fault: "client" }, opts)) || this;
|
|
392
|
+
_this.name = "MountTargetNotFound";
|
|
393
|
+
_this.$fault = "client";
|
|
394
|
+
Object.setPrototypeOf(_this, MountTargetNotFound.prototype);
|
|
395
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
396
|
+
_this.Message = opts.Message;
|
|
397
|
+
return _this;
|
|
399
398
|
}
|
|
400
|
-
|
|
399
|
+
return MountTargetNotFound;
|
|
400
|
+
}(__BaseException));
|
|
401
|
+
export { MountTargetNotFound };
|
|
401
402
|
export var ResourceIdType;
|
|
402
403
|
(function (ResourceIdType) {
|
|
403
404
|
ResourceIdType["LongId"] = "LONG_ID";
|
|
@@ -408,20 +409,20 @@ export var Resource;
|
|
|
408
409
|
Resource["FileSystem"] = "FILE_SYSTEM";
|
|
409
410
|
Resource["MountTarget"] = "MOUNT_TARGET";
|
|
410
411
|
})(Resource || (Resource = {}));
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
this.ErrorCode = opts.ErrorCode;
|
|
422
|
-
this.Message = opts.Message;
|
|
412
|
+
var PolicyNotFound = (function (_super) {
|
|
413
|
+
__extends(PolicyNotFound, _super);
|
|
414
|
+
function PolicyNotFound(opts) {
|
|
415
|
+
var _this = _super.call(this, __assign({ name: "PolicyNotFound", $fault: "client" }, opts)) || this;
|
|
416
|
+
_this.name = "PolicyNotFound";
|
|
417
|
+
_this.$fault = "client";
|
|
418
|
+
Object.setPrototypeOf(_this, PolicyNotFound.prototype);
|
|
419
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
420
|
+
_this.Message = opts.Message;
|
|
421
|
+
return _this;
|
|
423
422
|
}
|
|
424
|
-
|
|
423
|
+
return PolicyNotFound;
|
|
424
|
+
}(__BaseException));
|
|
425
|
+
export { PolicyNotFound };
|
|
425
426
|
export var TransitionToIARules;
|
|
426
427
|
(function (TransitionToIARules) {
|
|
427
428
|
TransitionToIARules["AFTER_14_DAYS"] = "AFTER_14_DAYS";
|
|
@@ -434,213 +435,101 @@ export var TransitionToPrimaryStorageClassRules;
|
|
|
434
435
|
(function (TransitionToPrimaryStorageClassRules) {
|
|
435
436
|
TransitionToPrimaryStorageClassRules["AFTER_1_ACCESS"] = "AFTER_1_ACCESS";
|
|
436
437
|
})(TransitionToPrimaryStorageClassRules || (TransitionToPrimaryStorageClassRules = {}));
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
this.ErrorCode = opts.ErrorCode;
|
|
448
|
-
this.Message = opts.Message;
|
|
438
|
+
var IncorrectMountTargetState = (function (_super) {
|
|
439
|
+
__extends(IncorrectMountTargetState, _super);
|
|
440
|
+
function IncorrectMountTargetState(opts) {
|
|
441
|
+
var _this = _super.call(this, __assign({ name: "IncorrectMountTargetState", $fault: "client" }, opts)) || this;
|
|
442
|
+
_this.name = "IncorrectMountTargetState";
|
|
443
|
+
_this.$fault = "client";
|
|
444
|
+
Object.setPrototypeOf(_this, IncorrectMountTargetState.prototype);
|
|
445
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
446
|
+
_this.Message = opts.Message;
|
|
447
|
+
return _this;
|
|
449
448
|
}
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
449
|
+
return IncorrectMountTargetState;
|
|
450
|
+
}(__BaseException));
|
|
451
|
+
export { IncorrectMountTargetState };
|
|
452
|
+
var InvalidPolicyException = (function (_super) {
|
|
453
|
+
__extends(InvalidPolicyException, _super);
|
|
454
|
+
function InvalidPolicyException(opts) {
|
|
455
|
+
var _this = _super.call(this, __assign({ name: "InvalidPolicyException", $fault: "client" }, opts)) || this;
|
|
456
|
+
_this.name = "InvalidPolicyException";
|
|
457
|
+
_this.$fault = "client";
|
|
458
|
+
Object.setPrototypeOf(_this, InvalidPolicyException.prototype);
|
|
459
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
460
|
+
_this.Message = opts.Message;
|
|
461
|
+
return _this;
|
|
463
462
|
}
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
463
|
+
return InvalidPolicyException;
|
|
464
|
+
}(__BaseException));
|
|
465
|
+
export { InvalidPolicyException };
|
|
466
|
+
var TooManyRequests = (function (_super) {
|
|
467
|
+
__extends(TooManyRequests, _super);
|
|
468
|
+
function TooManyRequests(opts) {
|
|
469
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequests", $fault: "client" }, opts)) || this;
|
|
470
|
+
_this.name = "TooManyRequests";
|
|
471
|
+
_this.$fault = "client";
|
|
472
|
+
Object.setPrototypeOf(_this, TooManyRequests.prototype);
|
|
473
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
474
|
+
_this.Message = opts.Message;
|
|
475
|
+
return _this;
|
|
477
476
|
}
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
});
|
|
482
|
-
export
|
|
483
|
-
|
|
484
|
-
});
|
|
485
|
-
export
|
|
486
|
-
|
|
487
|
-
});
|
|
488
|
-
export
|
|
489
|
-
|
|
490
|
-
});
|
|
491
|
-
export
|
|
492
|
-
|
|
493
|
-
});
|
|
494
|
-
export
|
|
495
|
-
|
|
496
|
-
});
|
|
497
|
-
export
|
|
498
|
-
|
|
499
|
-
});
|
|
500
|
-
export
|
|
501
|
-
|
|
502
|
-
});
|
|
503
|
-
export
|
|
504
|
-
|
|
505
|
-
});
|
|
506
|
-
export
|
|
507
|
-
|
|
508
|
-
});
|
|
509
|
-
export
|
|
510
|
-
|
|
511
|
-
});
|
|
512
|
-
export
|
|
513
|
-
|
|
514
|
-
});
|
|
515
|
-
export
|
|
516
|
-
|
|
517
|
-
});
|
|
518
|
-
export
|
|
519
|
-
|
|
520
|
-
});
|
|
521
|
-
export
|
|
522
|
-
|
|
523
|
-
});
|
|
524
|
-
export
|
|
525
|
-
|
|
526
|
-
});
|
|
527
|
-
export
|
|
528
|
-
|
|
529
|
-
});
|
|
530
|
-
export
|
|
531
|
-
|
|
532
|
-
});
|
|
533
|
-
export
|
|
534
|
-
|
|
535
|
-
});
|
|
536
|
-
export
|
|
537
|
-
...obj,
|
|
538
|
-
});
|
|
539
|
-
export const DeleteFileSystemPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
540
|
-
...obj,
|
|
541
|
-
});
|
|
542
|
-
export const DeleteMountTargetRequestFilterSensitiveLog = (obj) => ({
|
|
543
|
-
...obj,
|
|
544
|
-
});
|
|
545
|
-
export const DeleteReplicationConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
546
|
-
...obj,
|
|
547
|
-
});
|
|
548
|
-
export const DeleteTagsRequestFilterSensitiveLog = (obj) => ({
|
|
549
|
-
...obj,
|
|
550
|
-
});
|
|
551
|
-
export const DescribeAccessPointsRequestFilterSensitiveLog = (obj) => ({
|
|
552
|
-
...obj,
|
|
553
|
-
});
|
|
554
|
-
export const DescribeAccessPointsResponseFilterSensitiveLog = (obj) => ({
|
|
555
|
-
...obj,
|
|
556
|
-
});
|
|
557
|
-
export const DescribeAccountPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
558
|
-
...obj,
|
|
559
|
-
});
|
|
560
|
-
export const ResourceIdPreferenceFilterSensitiveLog = (obj) => ({
|
|
561
|
-
...obj,
|
|
562
|
-
});
|
|
563
|
-
export const DescribeAccountPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
564
|
-
...obj,
|
|
565
|
-
});
|
|
566
|
-
export const DescribeBackupPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
567
|
-
...obj,
|
|
568
|
-
});
|
|
569
|
-
export const DescribeFileSystemPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
570
|
-
...obj,
|
|
571
|
-
});
|
|
572
|
-
export const FileSystemPolicyDescriptionFilterSensitiveLog = (obj) => ({
|
|
573
|
-
...obj,
|
|
574
|
-
});
|
|
575
|
-
export const DescribeFileSystemsRequestFilterSensitiveLog = (obj) => ({
|
|
576
|
-
...obj,
|
|
577
|
-
});
|
|
578
|
-
export const DescribeFileSystemsResponseFilterSensitiveLog = (obj) => ({
|
|
579
|
-
...obj,
|
|
580
|
-
});
|
|
581
|
-
export const DescribeLifecycleConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
582
|
-
...obj,
|
|
583
|
-
});
|
|
584
|
-
export const LifecyclePolicyFilterSensitiveLog = (obj) => ({
|
|
585
|
-
...obj,
|
|
586
|
-
});
|
|
587
|
-
export const LifecycleConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
588
|
-
...obj,
|
|
589
|
-
});
|
|
590
|
-
export const DescribeMountTargetsRequestFilterSensitiveLog = (obj) => ({
|
|
591
|
-
...obj,
|
|
592
|
-
});
|
|
593
|
-
export const DescribeMountTargetsResponseFilterSensitiveLog = (obj) => ({
|
|
594
|
-
...obj,
|
|
595
|
-
});
|
|
596
|
-
export const DescribeMountTargetSecurityGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
597
|
-
...obj,
|
|
598
|
-
});
|
|
599
|
-
export const DescribeMountTargetSecurityGroupsResponseFilterSensitiveLog = (obj) => ({
|
|
600
|
-
...obj,
|
|
601
|
-
});
|
|
602
|
-
export const DescribeReplicationConfigurationsRequestFilterSensitiveLog = (obj) => ({
|
|
603
|
-
...obj,
|
|
604
|
-
});
|
|
605
|
-
export const DescribeReplicationConfigurationsResponseFilterSensitiveLog = (obj) => ({
|
|
606
|
-
...obj,
|
|
607
|
-
});
|
|
608
|
-
export const DescribeTagsRequestFilterSensitiveLog = (obj) => ({
|
|
609
|
-
...obj,
|
|
610
|
-
});
|
|
611
|
-
export const DescribeTagsResponseFilterSensitiveLog = (obj) => ({
|
|
612
|
-
...obj,
|
|
613
|
-
});
|
|
614
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
615
|
-
...obj,
|
|
616
|
-
});
|
|
617
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
618
|
-
...obj,
|
|
619
|
-
});
|
|
620
|
-
export const ModifyMountTargetSecurityGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
621
|
-
...obj,
|
|
622
|
-
});
|
|
623
|
-
export const PutAccountPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
624
|
-
...obj,
|
|
625
|
-
});
|
|
626
|
-
export const PutAccountPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
627
|
-
...obj,
|
|
628
|
-
});
|
|
629
|
-
export const PutBackupPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
630
|
-
...obj,
|
|
631
|
-
});
|
|
632
|
-
export const PutFileSystemPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
633
|
-
...obj,
|
|
634
|
-
});
|
|
635
|
-
export const PutLifecycleConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
636
|
-
...obj,
|
|
637
|
-
});
|
|
638
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
639
|
-
...obj,
|
|
640
|
-
});
|
|
641
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
642
|
-
...obj,
|
|
643
|
-
});
|
|
644
|
-
export const UpdateFileSystemRequestFilterSensitiveLog = (obj) => ({
|
|
645
|
-
...obj,
|
|
646
|
-
});
|
|
477
|
+
return TooManyRequests;
|
|
478
|
+
}(__BaseException));
|
|
479
|
+
export { TooManyRequests };
|
|
480
|
+
export var PosixUserFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
481
|
+
export var CreationInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
482
|
+
export var RootDirectoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
483
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
484
|
+
export var AccessPointDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
485
|
+
export var BackupPolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
486
|
+
export var BackupPolicyDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
487
|
+
export var CreateAccessPointRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
488
|
+
export var CreateFileSystemRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
489
|
+
export var FileSystemSizeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
490
|
+
export var FileSystemDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
491
|
+
export var CreateMountTargetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
492
|
+
export var MountTargetDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
493
|
+
export var DestinationToCreateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
494
|
+
export var CreateReplicationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
495
|
+
export var DestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
496
|
+
export var ReplicationConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
497
|
+
export var CreateTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
498
|
+
export var DeleteAccessPointRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
499
|
+
export var DeleteFileSystemRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
500
|
+
export var DeleteFileSystemPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
501
|
+
export var DeleteMountTargetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
502
|
+
export var DeleteReplicationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
503
|
+
export var DeleteTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
504
|
+
export var DescribeAccessPointsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
505
|
+
export var DescribeAccessPointsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
506
|
+
export var DescribeAccountPreferencesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
507
|
+
export var ResourceIdPreferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
508
|
+
export var DescribeAccountPreferencesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
509
|
+
export var DescribeBackupPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
510
|
+
export var DescribeFileSystemPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
511
|
+
export var FileSystemPolicyDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
512
|
+
export var DescribeFileSystemsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
513
|
+
export var DescribeFileSystemsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
514
|
+
export var DescribeLifecycleConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
515
|
+
export var LifecyclePolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
516
|
+
export var LifecycleConfigurationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
517
|
+
export var DescribeMountTargetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
518
|
+
export var DescribeMountTargetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
519
|
+
export var DescribeMountTargetSecurityGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
520
|
+
export var DescribeMountTargetSecurityGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
521
|
+
export var DescribeReplicationConfigurationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
522
|
+
export var DescribeReplicationConfigurationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
523
|
+
export var DescribeTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
524
|
+
export var DescribeTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
525
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
526
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
527
|
+
export var ModifyMountTargetSecurityGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
528
|
+
export var PutAccountPreferencesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
529
|
+
export var PutAccountPreferencesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
530
|
+
export var PutBackupPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
531
|
+
export var PutFileSystemPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
532
|
+
export var PutLifecycleConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
533
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
534
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
535
|
+
export var UpdateFileSystemRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|