@aws-sdk/client-network-firewall 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 +24 -0
- package/README.md +2 -2
- package/dist-cjs/models/models_0.js +8 -3
- package/dist-cjs/protocols/Aws_json1_0.js +4 -2
- package/dist-es/NetworkFirewall.js +133 -126
- package/dist-es/NetworkFirewallClient.js +28 -22
- package/dist-es/commands/AssociateFirewallPolicyCommand.js +28 -21
- package/dist-es/commands/AssociateSubnetsCommand.js +28 -21
- package/dist-es/commands/CreateFirewallCommand.js +28 -21
- package/dist-es/commands/CreateFirewallPolicyCommand.js +28 -21
- package/dist-es/commands/CreateRuleGroupCommand.js +28 -21
- package/dist-es/commands/DeleteFirewallCommand.js +28 -21
- package/dist-es/commands/DeleteFirewallPolicyCommand.js +28 -21
- package/dist-es/commands/DeleteResourcePolicyCommand.js +28 -21
- package/dist-es/commands/DeleteRuleGroupCommand.js +28 -21
- package/dist-es/commands/DescribeFirewallCommand.js +28 -21
- package/dist-es/commands/DescribeFirewallPolicyCommand.js +28 -21
- package/dist-es/commands/DescribeLoggingConfigurationCommand.js +28 -21
- package/dist-es/commands/DescribeResourcePolicyCommand.js +28 -21
- package/dist-es/commands/DescribeRuleGroupCommand.js +28 -21
- package/dist-es/commands/DescribeRuleGroupMetadataCommand.js +28 -21
- package/dist-es/commands/DisassociateSubnetsCommand.js +28 -21
- package/dist-es/commands/ListFirewallPoliciesCommand.js +28 -21
- package/dist-es/commands/ListFirewallsCommand.js +28 -21
- package/dist-es/commands/ListRuleGroupsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PutResourcePolicyCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateFirewallDeleteProtectionCommand.js +28 -21
- package/dist-es/commands/UpdateFirewallDescriptionCommand.js +28 -21
- package/dist-es/commands/UpdateFirewallEncryptionConfigurationCommand.js +28 -21
- package/dist-es/commands/UpdateFirewallPolicyChangeProtectionCommand.js +28 -21
- package/dist-es/commands/UpdateFirewallPolicyCommand.js +28 -21
- package/dist-es/commands/UpdateLoggingConfigurationCommand.js +28 -21
- package/dist-es/commands/UpdateRuleGroupCommand.js +28 -21
- package/dist-es/commands/UpdateSubnetChangeProtectionCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/NetworkFirewallServiceException.js +10 -5
- package/dist-es/models/models_0.js +259 -471
- package/dist-es/pagination/ListFirewallPoliciesPaginator.js +68 -25
- package/dist-es/pagination/ListFirewallsPaginator.js +68 -25
- package/dist-es/pagination/ListRuleGroupsPaginator.js +68 -25
- package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_0.js +3104 -2607
- 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/dist-types/NetworkFirewall.d.ts +2 -2
- package/dist-types/NetworkFirewallClient.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +20 -2
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/package.json +33 -33
|
@@ -1,95 +1,96 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var InternalServerError = (function (_super) {
|
|
4
|
+
__extends(InternalServerError, _super);
|
|
5
|
+
function InternalServerError(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
|
|
7
|
+
_this.name = "InternalServerError";
|
|
8
|
+
_this.$fault = "server";
|
|
9
|
+
Object.setPrototypeOf(_this, InternalServerError.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
13
|
+
return InternalServerError;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { InternalServerError };
|
|
16
|
+
var InvalidOperationException = (function (_super) {
|
|
17
|
+
__extends(InvalidOperationException, _super);
|
|
18
|
+
function InvalidOperationException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "InvalidOperationException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "InvalidOperationException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, InvalidOperationException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
return InvalidOperationException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { InvalidOperationException };
|
|
29
|
+
var InvalidRequestException = (function (_super) {
|
|
30
|
+
__extends(InvalidRequestException, _super);
|
|
31
|
+
function InvalidRequestException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
33
|
+
_this.name = "InvalidRequestException";
|
|
34
|
+
_this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
36
|
+
_this.Message = opts.Message;
|
|
37
|
+
return _this;
|
|
39
38
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
39
|
+
return InvalidRequestException;
|
|
40
|
+
}(__BaseException));
|
|
41
|
+
export { InvalidRequestException };
|
|
42
|
+
var InvalidTokenException = (function (_super) {
|
|
43
|
+
__extends(InvalidTokenException, _super);
|
|
44
|
+
function InvalidTokenException(opts) {
|
|
45
|
+
var _this = _super.call(this, __assign({ name: "InvalidTokenException", $fault: "client" }, opts)) || this;
|
|
46
|
+
_this.name = "InvalidTokenException";
|
|
47
|
+
_this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(_this, InvalidTokenException.prototype);
|
|
49
|
+
_this.Message = opts.Message;
|
|
50
|
+
return _this;
|
|
52
51
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
52
|
+
return InvalidTokenException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { InvalidTokenException };
|
|
55
|
+
var ResourceNotFoundException = (function (_super) {
|
|
56
|
+
__extends(ResourceNotFoundException, _super);
|
|
57
|
+
function ResourceNotFoundException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "ResourceNotFoundException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
62
|
+
_this.Message = opts.Message;
|
|
63
|
+
return _this;
|
|
65
64
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
65
|
+
return ResourceNotFoundException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { ResourceNotFoundException };
|
|
68
|
+
var ThrottlingException = (function (_super) {
|
|
69
|
+
__extends(ThrottlingException, _super);
|
|
70
|
+
function ThrottlingException(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "ThrottlingException";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
75
|
+
_this.Message = opts.Message;
|
|
76
|
+
return _this;
|
|
78
77
|
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
78
|
+
return ThrottlingException;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { ThrottlingException };
|
|
81
|
+
var InsufficientCapacityException = (function (_super) {
|
|
82
|
+
__extends(InsufficientCapacityException, _super);
|
|
83
|
+
function InsufficientCapacityException(opts) {
|
|
84
|
+
var _this = _super.call(this, __assign({ name: "InsufficientCapacityException", $fault: "server" }, opts)) || this;
|
|
85
|
+
_this.name = "InsufficientCapacityException";
|
|
86
|
+
_this.$fault = "server";
|
|
87
|
+
Object.setPrototypeOf(_this, InsufficientCapacityException.prototype);
|
|
88
|
+
_this.Message = opts.Message;
|
|
89
|
+
return _this;
|
|
91
90
|
}
|
|
92
|
-
|
|
91
|
+
return InsufficientCapacityException;
|
|
92
|
+
}(__BaseException));
|
|
93
|
+
export { InsufficientCapacityException };
|
|
93
94
|
export var AttachmentStatus;
|
|
94
95
|
(function (AttachmentStatus) {
|
|
95
96
|
AttachmentStatus["CREATING"] = "CREATING";
|
|
@@ -120,24 +121,29 @@ export var PerObjectSyncStatus;
|
|
|
120
121
|
PerObjectSyncStatus["IN_SYNC"] = "IN_SYNC";
|
|
121
122
|
PerObjectSyncStatus["PENDING"] = "PENDING";
|
|
122
123
|
})(PerObjectSyncStatus || (PerObjectSyncStatus = {}));
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
133
|
-
this.Message = opts.Message;
|
|
124
|
+
var LimitExceededException = (function (_super) {
|
|
125
|
+
__extends(LimitExceededException, _super);
|
|
126
|
+
function LimitExceededException(opts) {
|
|
127
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
128
|
+
_this.name = "LimitExceededException";
|
|
129
|
+
_this.$fault = "client";
|
|
130
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
131
|
+
_this.Message = opts.Message;
|
|
132
|
+
return _this;
|
|
134
133
|
}
|
|
135
|
-
|
|
134
|
+
return LimitExceededException;
|
|
135
|
+
}(__BaseException));
|
|
136
|
+
export { LimitExceededException };
|
|
136
137
|
export var RuleOrder;
|
|
137
138
|
(function (RuleOrder) {
|
|
138
139
|
RuleOrder["DEFAULT_ACTION_ORDER"] = "DEFAULT_ACTION_ORDER";
|
|
139
140
|
RuleOrder["STRICT_ORDER"] = "STRICT_ORDER";
|
|
140
141
|
})(RuleOrder || (RuleOrder = {}));
|
|
142
|
+
export var StreamExceptionPolicy;
|
|
143
|
+
(function (StreamExceptionPolicy) {
|
|
144
|
+
StreamExceptionPolicy["CONTINUE"] = "CONTINUE";
|
|
145
|
+
StreamExceptionPolicy["DROP"] = "DROP";
|
|
146
|
+
})(StreamExceptionPolicy || (StreamExceptionPolicy = {}));
|
|
141
147
|
export var OverrideAction;
|
|
142
148
|
(function (OverrideAction) {
|
|
143
149
|
OverrideAction["DROP_TO_ALERT"] = "DROP_TO_ALERT";
|
|
@@ -206,32 +212,32 @@ export var RuleGroupType;
|
|
|
206
212
|
RuleGroupType["STATEFUL"] = "STATEFUL";
|
|
207
213
|
RuleGroupType["STATELESS"] = "STATELESS";
|
|
208
214
|
})(RuleGroupType || (RuleGroupType = {}));
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
219
|
-
this.Message = opts.Message;
|
|
215
|
+
var UnsupportedOperationException = (function (_super) {
|
|
216
|
+
__extends(UnsupportedOperationException, _super);
|
|
217
|
+
function UnsupportedOperationException(opts) {
|
|
218
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
|
|
219
|
+
_this.name = "UnsupportedOperationException";
|
|
220
|
+
_this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
|
|
222
|
+
_this.Message = opts.Message;
|
|
223
|
+
return _this;
|
|
220
224
|
}
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
225
|
+
return UnsupportedOperationException;
|
|
226
|
+
}(__BaseException));
|
|
227
|
+
export { UnsupportedOperationException };
|
|
228
|
+
var InvalidResourcePolicyException = (function (_super) {
|
|
229
|
+
__extends(InvalidResourcePolicyException, _super);
|
|
230
|
+
function InvalidResourcePolicyException(opts) {
|
|
231
|
+
var _this = _super.call(this, __assign({ name: "InvalidResourcePolicyException", $fault: "client" }, opts)) || this;
|
|
232
|
+
_this.name = "InvalidResourcePolicyException";
|
|
233
|
+
_this.$fault = "client";
|
|
234
|
+
Object.setPrototypeOf(_this, InvalidResourcePolicyException.prototype);
|
|
235
|
+
_this.Message = opts.Message;
|
|
236
|
+
return _this;
|
|
233
237
|
}
|
|
234
|
-
|
|
238
|
+
return InvalidResourcePolicyException;
|
|
239
|
+
}(__BaseException));
|
|
240
|
+
export { InvalidResourcePolicyException };
|
|
235
241
|
export var LogDestinationType;
|
|
236
242
|
(function (LogDestinationType) {
|
|
237
243
|
LogDestinationType["CLOUDWATCH_LOGS"] = "CloudWatchLogs";
|
|
@@ -253,356 +259,138 @@ export var ResourceManagedStatus;
|
|
|
253
259
|
ResourceManagedStatus["ACCOUNT"] = "ACCOUNT";
|
|
254
260
|
ResourceManagedStatus["MANAGED"] = "MANAGED";
|
|
255
261
|
})(ResourceManagedStatus || (ResourceManagedStatus = {}));
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
Object.setPrototypeOf(this, LogDestinationPermissionException.prototype);
|
|
266
|
-
this.Message = opts.Message;
|
|
262
|
+
var LogDestinationPermissionException = (function (_super) {
|
|
263
|
+
__extends(LogDestinationPermissionException, _super);
|
|
264
|
+
function LogDestinationPermissionException(opts) {
|
|
265
|
+
var _this = _super.call(this, __assign({ name: "LogDestinationPermissionException", $fault: "client" }, opts)) || this;
|
|
266
|
+
_this.name = "LogDestinationPermissionException";
|
|
267
|
+
_this.$fault = "client";
|
|
268
|
+
Object.setPrototypeOf(_this, LogDestinationPermissionException.prototype);
|
|
269
|
+
_this.Message = opts.Message;
|
|
270
|
+
return _this;
|
|
267
271
|
}
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
272
|
+
return LogDestinationPermissionException;
|
|
273
|
+
}(__BaseException));
|
|
274
|
+
export { LogDestinationPermissionException };
|
|
275
|
+
var ResourceOwnerCheckException = (function (_super) {
|
|
276
|
+
__extends(ResourceOwnerCheckException, _super);
|
|
277
|
+
function ResourceOwnerCheckException(opts) {
|
|
278
|
+
var _this = _super.call(this, __assign({ name: "ResourceOwnerCheckException", $fault: "client" }, opts)) || this;
|
|
279
|
+
_this.name = "ResourceOwnerCheckException";
|
|
280
|
+
_this.$fault = "client";
|
|
281
|
+
Object.setPrototypeOf(_this, ResourceOwnerCheckException.prototype);
|
|
282
|
+
_this.Message = opts.Message;
|
|
283
|
+
return _this;
|
|
280
284
|
}
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
});
|
|
285
|
-
export
|
|
286
|
-
|
|
287
|
-
});
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
});
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
});
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
});
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
});
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
});
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
});
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
});
|
|
309
|
-
export
|
|
310
|
-
|
|
311
|
-
});
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
});
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
});
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
});
|
|
321
|
-
export
|
|
322
|
-
|
|
323
|
-
});
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
});
|
|
327
|
-
export
|
|
328
|
-
|
|
329
|
-
});
|
|
330
|
-
export
|
|
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
|
-
});
|
|
390
|
-
export
|
|
391
|
-
|
|
392
|
-
});
|
|
393
|
-
export const TCPFlagFieldFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
});
|
|
396
|
-
export const MatchAttributesFilterSensitiveLog = (obj) => ({
|
|
397
|
-
...obj,
|
|
398
|
-
});
|
|
399
|
-
export const RuleDefinitionFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
});
|
|
402
|
-
export const StatelessRuleFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
});
|
|
405
|
-
export const StatelessRulesAndCustomActionsFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
});
|
|
408
|
-
export const RulesSourceFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
});
|
|
411
|
-
export const IPSetFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const PortSetFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const RuleVariablesFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const StatefulRuleOptionsFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
});
|
|
423
|
-
export const RuleGroupFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
});
|
|
426
|
-
export const SourceMetadataFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
});
|
|
429
|
-
export const CreateRuleGroupRequestFilterSensitiveLog = (obj) => ({
|
|
430
|
-
...obj,
|
|
431
|
-
});
|
|
432
|
-
export const RuleGroupResponseFilterSensitiveLog = (obj) => ({
|
|
433
|
-
...obj,
|
|
434
|
-
});
|
|
435
|
-
export const CreateRuleGroupResponseFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
});
|
|
438
|
-
export const DeleteFirewallRequestFilterSensitiveLog = (obj) => ({
|
|
439
|
-
...obj,
|
|
440
|
-
});
|
|
441
|
-
export const DeleteFirewallResponseFilterSensitiveLog = (obj) => ({
|
|
442
|
-
...obj,
|
|
443
|
-
});
|
|
444
|
-
export const DeleteFirewallPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
445
|
-
...obj,
|
|
446
|
-
});
|
|
447
|
-
export const DeleteFirewallPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
448
|
-
...obj,
|
|
449
|
-
});
|
|
450
|
-
export const DeleteResourcePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
451
|
-
...obj,
|
|
452
|
-
});
|
|
453
|
-
export const DeleteResourcePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
454
|
-
...obj,
|
|
455
|
-
});
|
|
456
|
-
export const DeleteRuleGroupRequestFilterSensitiveLog = (obj) => ({
|
|
457
|
-
...obj,
|
|
458
|
-
});
|
|
459
|
-
export const DeleteRuleGroupResponseFilterSensitiveLog = (obj) => ({
|
|
460
|
-
...obj,
|
|
461
|
-
});
|
|
462
|
-
export const DescribeFirewallRequestFilterSensitiveLog = (obj) => ({
|
|
463
|
-
...obj,
|
|
464
|
-
});
|
|
465
|
-
export const DescribeFirewallResponseFilterSensitiveLog = (obj) => ({
|
|
466
|
-
...obj,
|
|
467
|
-
});
|
|
468
|
-
export const DescribeFirewallPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
469
|
-
...obj,
|
|
470
|
-
});
|
|
471
|
-
export const DescribeFirewallPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
472
|
-
...obj,
|
|
473
|
-
});
|
|
474
|
-
export const DescribeLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
475
|
-
...obj,
|
|
476
|
-
});
|
|
477
|
-
export const LogDestinationConfigFilterSensitiveLog = (obj) => ({
|
|
478
|
-
...obj,
|
|
479
|
-
});
|
|
480
|
-
export const LoggingConfigurationFilterSensitiveLog = (obj) => ({
|
|
481
|
-
...obj,
|
|
482
|
-
});
|
|
483
|
-
export const DescribeLoggingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
484
|
-
...obj,
|
|
485
|
-
});
|
|
486
|
-
export const DescribeResourcePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
487
|
-
...obj,
|
|
488
|
-
});
|
|
489
|
-
export const DescribeResourcePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
490
|
-
...obj,
|
|
491
|
-
});
|
|
492
|
-
export const DescribeRuleGroupRequestFilterSensitiveLog = (obj) => ({
|
|
493
|
-
...obj,
|
|
494
|
-
});
|
|
495
|
-
export const DescribeRuleGroupResponseFilterSensitiveLog = (obj) => ({
|
|
496
|
-
...obj,
|
|
497
|
-
});
|
|
498
|
-
export const DescribeRuleGroupMetadataRequestFilterSensitiveLog = (obj) => ({
|
|
499
|
-
...obj,
|
|
500
|
-
});
|
|
501
|
-
export const DescribeRuleGroupMetadataResponseFilterSensitiveLog = (obj) => ({
|
|
502
|
-
...obj,
|
|
503
|
-
});
|
|
504
|
-
export const DisassociateSubnetsRequestFilterSensitiveLog = (obj) => ({
|
|
505
|
-
...obj,
|
|
506
|
-
});
|
|
507
|
-
export const DisassociateSubnetsResponseFilterSensitiveLog = (obj) => ({
|
|
508
|
-
...obj,
|
|
509
|
-
});
|
|
510
|
-
export const FirewallMetadataFilterSensitiveLog = (obj) => ({
|
|
511
|
-
...obj,
|
|
512
|
-
});
|
|
513
|
-
export const FirewallPolicyMetadataFilterSensitiveLog = (obj) => ({
|
|
514
|
-
...obj,
|
|
515
|
-
});
|
|
516
|
-
export const ListFirewallPoliciesRequestFilterSensitiveLog = (obj) => ({
|
|
517
|
-
...obj,
|
|
518
|
-
});
|
|
519
|
-
export const ListFirewallPoliciesResponseFilterSensitiveLog = (obj) => ({
|
|
520
|
-
...obj,
|
|
521
|
-
});
|
|
522
|
-
export const ListFirewallsRequestFilterSensitiveLog = (obj) => ({
|
|
523
|
-
...obj,
|
|
524
|
-
});
|
|
525
|
-
export const ListFirewallsResponseFilterSensitiveLog = (obj) => ({
|
|
526
|
-
...obj,
|
|
527
|
-
});
|
|
528
|
-
export const ListRuleGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
529
|
-
...obj,
|
|
530
|
-
});
|
|
531
|
-
export const RuleGroupMetadataFilterSensitiveLog = (obj) => ({
|
|
532
|
-
...obj,
|
|
533
|
-
});
|
|
534
|
-
export const ListRuleGroupsResponseFilterSensitiveLog = (obj) => ({
|
|
535
|
-
...obj,
|
|
536
|
-
});
|
|
537
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
538
|
-
...obj,
|
|
539
|
-
});
|
|
540
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
541
|
-
...obj,
|
|
542
|
-
});
|
|
543
|
-
export const PutResourcePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
544
|
-
...obj,
|
|
545
|
-
});
|
|
546
|
-
export const PutResourcePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
547
|
-
...obj,
|
|
548
|
-
});
|
|
549
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
550
|
-
...obj,
|
|
551
|
-
});
|
|
552
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
553
|
-
...obj,
|
|
554
|
-
});
|
|
555
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
556
|
-
...obj,
|
|
557
|
-
});
|
|
558
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
559
|
-
...obj,
|
|
560
|
-
});
|
|
561
|
-
export const UpdateFirewallDeleteProtectionRequestFilterSensitiveLog = (obj) => ({
|
|
562
|
-
...obj,
|
|
563
|
-
});
|
|
564
|
-
export const UpdateFirewallDeleteProtectionResponseFilterSensitiveLog = (obj) => ({
|
|
565
|
-
...obj,
|
|
566
|
-
});
|
|
567
|
-
export const UpdateFirewallDescriptionRequestFilterSensitiveLog = (obj) => ({
|
|
568
|
-
...obj,
|
|
569
|
-
});
|
|
570
|
-
export const UpdateFirewallDescriptionResponseFilterSensitiveLog = (obj) => ({
|
|
571
|
-
...obj,
|
|
572
|
-
});
|
|
573
|
-
export const UpdateFirewallEncryptionConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
574
|
-
...obj,
|
|
575
|
-
});
|
|
576
|
-
export const UpdateFirewallEncryptionConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
577
|
-
...obj,
|
|
578
|
-
});
|
|
579
|
-
export const UpdateFirewallPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
580
|
-
...obj,
|
|
581
|
-
});
|
|
582
|
-
export const UpdateFirewallPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
583
|
-
...obj,
|
|
584
|
-
});
|
|
585
|
-
export const UpdateFirewallPolicyChangeProtectionRequestFilterSensitiveLog = (obj) => ({
|
|
586
|
-
...obj,
|
|
587
|
-
});
|
|
588
|
-
export const UpdateFirewallPolicyChangeProtectionResponseFilterSensitiveLog = (obj) => ({
|
|
589
|
-
...obj,
|
|
590
|
-
});
|
|
591
|
-
export const UpdateLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
592
|
-
...obj,
|
|
593
|
-
});
|
|
594
|
-
export const UpdateLoggingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
595
|
-
...obj,
|
|
596
|
-
});
|
|
597
|
-
export const UpdateRuleGroupRequestFilterSensitiveLog = (obj) => ({
|
|
598
|
-
...obj,
|
|
599
|
-
});
|
|
600
|
-
export const UpdateRuleGroupResponseFilterSensitiveLog = (obj) => ({
|
|
601
|
-
...obj,
|
|
602
|
-
});
|
|
603
|
-
export const UpdateSubnetChangeProtectionRequestFilterSensitiveLog = (obj) => ({
|
|
604
|
-
...obj,
|
|
605
|
-
});
|
|
606
|
-
export const UpdateSubnetChangeProtectionResponseFilterSensitiveLog = (obj) => ({
|
|
607
|
-
...obj,
|
|
608
|
-
});
|
|
285
|
+
return ResourceOwnerCheckException;
|
|
286
|
+
}(__BaseException));
|
|
287
|
+
export { ResourceOwnerCheckException };
|
|
288
|
+
export var DimensionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var PublishMetricActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var ActionDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var AddressFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var AssociateFirewallPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var AssociateFirewallPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var SubnetMappingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var AssociateSubnetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var AssociateSubnetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var AttachmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var IPSetMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var CIDRSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var CapacityUsageSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var EncryptionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var CreateFirewallRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var FirewallFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var PerObjectStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var SyncStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var FirewallStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var CreateFirewallResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var StatefulEngineOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var StatefulRuleGroupOverrideFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var StatefulRuleGroupReferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var CustomActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var StatelessRuleGroupReferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var FirewallPolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var CreateFirewallPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var FirewallPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var CreateFirewallPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var IPSetReferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var ReferenceSetsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var RulesSourceListFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var HeaderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var RuleOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var StatefulRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var PortRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var TCPFlagFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var MatchAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var RuleDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var StatelessRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var StatelessRulesAndCustomActionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var RulesSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var IPSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var PortSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var RuleVariablesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var StatefulRuleOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var RuleGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var SourceMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var CreateRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var RuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var CreateRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var DeleteFirewallRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var DeleteFirewallResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var DeleteFirewallPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
export var DeleteFirewallPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
export var DeleteResourcePolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
+
export var DeleteResourcePolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
346
|
+
export var DeleteRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
+
export var DeleteRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
348
|
+
export var DescribeFirewallRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
+
export var DescribeFirewallResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
|
+
export var DescribeFirewallPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
+
export var DescribeFirewallPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
352
|
+
export var DescribeLoggingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
export var LogDestinationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
354
|
+
export var LoggingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
+
export var DescribeLoggingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
356
|
+
export var DescribeResourcePolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
export var DescribeResourcePolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var DescribeRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var DescribeRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
|
+
export var DescribeRuleGroupMetadataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
|
+
export var DescribeRuleGroupMetadataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
362
|
+
export var DisassociateSubnetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
363
|
+
export var DisassociateSubnetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
364
|
+
export var FirewallMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
+
export var FirewallPolicyMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
366
|
+
export var ListFirewallPoliciesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
367
|
+
export var ListFirewallPoliciesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
368
|
+
export var ListFirewallsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
369
|
+
export var ListFirewallsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
370
|
+
export var ListRuleGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
371
|
+
export var RuleGroupMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
372
|
+
export var ListRuleGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
374
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
375
|
+
export var PutResourcePolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
376
|
+
export var PutResourcePolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
377
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
378
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
379
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
380
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
381
|
+
export var UpdateFirewallDeleteProtectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
382
|
+
export var UpdateFirewallDeleteProtectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
383
|
+
export var UpdateFirewallDescriptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
384
|
+
export var UpdateFirewallDescriptionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
385
|
+
export var UpdateFirewallEncryptionConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
386
|
+
export var UpdateFirewallEncryptionConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
387
|
+
export var UpdateFirewallPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
388
|
+
export var UpdateFirewallPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
389
|
+
export var UpdateFirewallPolicyChangeProtectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
390
|
+
export var UpdateFirewallPolicyChangeProtectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
391
|
+
export var UpdateLoggingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
392
|
+
export var UpdateLoggingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
393
|
+
export var UpdateRuleGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
394
|
+
export var UpdateRuleGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
395
|
+
export var UpdateSubnetChangeProtectionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
396
|
+
export var UpdateSubnetChangeProtectionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|