@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.
Files changed (54) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +2 -2
  3. package/dist-cjs/models/models_0.js +8 -3
  4. package/dist-cjs/protocols/Aws_json1_0.js +4 -2
  5. package/dist-es/NetworkFirewall.js +133 -126
  6. package/dist-es/NetworkFirewallClient.js +28 -22
  7. package/dist-es/commands/AssociateFirewallPolicyCommand.js +28 -21
  8. package/dist-es/commands/AssociateSubnetsCommand.js +28 -21
  9. package/dist-es/commands/CreateFirewallCommand.js +28 -21
  10. package/dist-es/commands/CreateFirewallPolicyCommand.js +28 -21
  11. package/dist-es/commands/CreateRuleGroupCommand.js +28 -21
  12. package/dist-es/commands/DeleteFirewallCommand.js +28 -21
  13. package/dist-es/commands/DeleteFirewallPolicyCommand.js +28 -21
  14. package/dist-es/commands/DeleteResourcePolicyCommand.js +28 -21
  15. package/dist-es/commands/DeleteRuleGroupCommand.js +28 -21
  16. package/dist-es/commands/DescribeFirewallCommand.js +28 -21
  17. package/dist-es/commands/DescribeFirewallPolicyCommand.js +28 -21
  18. package/dist-es/commands/DescribeLoggingConfigurationCommand.js +28 -21
  19. package/dist-es/commands/DescribeResourcePolicyCommand.js +28 -21
  20. package/dist-es/commands/DescribeRuleGroupCommand.js +28 -21
  21. package/dist-es/commands/DescribeRuleGroupMetadataCommand.js +28 -21
  22. package/dist-es/commands/DisassociateSubnetsCommand.js +28 -21
  23. package/dist-es/commands/ListFirewallPoliciesCommand.js +28 -21
  24. package/dist-es/commands/ListFirewallsCommand.js +28 -21
  25. package/dist-es/commands/ListRuleGroupsCommand.js +28 -21
  26. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  27. package/dist-es/commands/PutResourcePolicyCommand.js +28 -21
  28. package/dist-es/commands/TagResourceCommand.js +28 -21
  29. package/dist-es/commands/UntagResourceCommand.js +28 -21
  30. package/dist-es/commands/UpdateFirewallDeleteProtectionCommand.js +28 -21
  31. package/dist-es/commands/UpdateFirewallDescriptionCommand.js +28 -21
  32. package/dist-es/commands/UpdateFirewallEncryptionConfigurationCommand.js +28 -21
  33. package/dist-es/commands/UpdateFirewallPolicyChangeProtectionCommand.js +28 -21
  34. package/dist-es/commands/UpdateFirewallPolicyCommand.js +28 -21
  35. package/dist-es/commands/UpdateLoggingConfigurationCommand.js +28 -21
  36. package/dist-es/commands/UpdateRuleGroupCommand.js +28 -21
  37. package/dist-es/commands/UpdateSubnetChangeProtectionCommand.js +28 -21
  38. package/dist-es/endpoints.js +8 -8
  39. package/dist-es/models/NetworkFirewallServiceException.js +10 -5
  40. package/dist-es/models/models_0.js +259 -471
  41. package/dist-es/pagination/ListFirewallPoliciesPaginator.js +68 -25
  42. package/dist-es/pagination/ListFirewallsPaginator.js +68 -25
  43. package/dist-es/pagination/ListRuleGroupsPaginator.js +68 -25
  44. package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
  45. package/dist-es/protocols/Aws_json1_0.js +3104 -2607
  46. package/dist-es/runtimeConfig.browser.js +12 -26
  47. package/dist-es/runtimeConfig.js +12 -30
  48. package/dist-es/runtimeConfig.native.js +5 -8
  49. package/dist-es/runtimeConfig.shared.js +11 -8
  50. package/dist-types/NetworkFirewall.d.ts +2 -2
  51. package/dist-types/NetworkFirewallClient.d.ts +2 -2
  52. package/dist-types/models/models_0.d.ts +20 -2
  53. package/dist-types/ts3.4/models/models_0.d.ts +5 -0
  54. package/package.json +33 -33
@@ -1,95 +1,96 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException";
2
- export class InternalServerError extends __BaseException {
3
- constructor(opts) {
4
- super({
5
- name: "InternalServerError",
6
- $fault: "server",
7
- ...opts,
8
- });
9
- this.name = "InternalServerError";
10
- this.$fault = "server";
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
- export class InvalidOperationException extends __BaseException {
16
- constructor(opts) {
17
- super({
18
- name: "InvalidOperationException",
19
- $fault: "client",
20
- ...opts,
21
- });
22
- this.name = "InvalidOperationException";
23
- this.$fault = "client";
24
- Object.setPrototypeOf(this, InvalidOperationException.prototype);
25
- this.Message = opts.Message;
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
- export class InvalidRequestException extends __BaseException {
29
- constructor(opts) {
30
- super({
31
- name: "InvalidRequestException",
32
- $fault: "client",
33
- ...opts,
34
- });
35
- this.name = "InvalidRequestException";
36
- this.$fault = "client";
37
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
38
- this.Message = opts.Message;
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
- export class InvalidTokenException extends __BaseException {
42
- constructor(opts) {
43
- super({
44
- name: "InvalidTokenException",
45
- $fault: "client",
46
- ...opts,
47
- });
48
- this.name = "InvalidTokenException";
49
- this.$fault = "client";
50
- Object.setPrototypeOf(this, InvalidTokenException.prototype);
51
- this.Message = opts.Message;
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
- export class ResourceNotFoundException extends __BaseException {
55
- constructor(opts) {
56
- super({
57
- name: "ResourceNotFoundException",
58
- $fault: "client",
59
- ...opts,
60
- });
61
- this.name = "ResourceNotFoundException";
62
- this.$fault = "client";
63
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
64
- this.Message = opts.Message;
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
- export class ThrottlingException extends __BaseException {
68
- constructor(opts) {
69
- super({
70
- name: "ThrottlingException",
71
- $fault: "client",
72
- ...opts,
73
- });
74
- this.name = "ThrottlingException";
75
- this.$fault = "client";
76
- Object.setPrototypeOf(this, ThrottlingException.prototype);
77
- this.Message = opts.Message;
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
- export class InsufficientCapacityException extends __BaseException {
81
- constructor(opts) {
82
- super({
83
- name: "InsufficientCapacityException",
84
- $fault: "server",
85
- ...opts,
86
- });
87
- this.name = "InsufficientCapacityException";
88
- this.$fault = "server";
89
- Object.setPrototypeOf(this, InsufficientCapacityException.prototype);
90
- this.Message = opts.Message;
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
- export class LimitExceededException extends __BaseException {
124
- constructor(opts) {
125
- super({
126
- name: "LimitExceededException",
127
- $fault: "client",
128
- ...opts,
129
- });
130
- this.name = "LimitExceededException";
131
- this.$fault = "client";
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
- export class UnsupportedOperationException extends __BaseException {
210
- constructor(opts) {
211
- super({
212
- name: "UnsupportedOperationException",
213
- $fault: "client",
214
- ...opts,
215
- });
216
- this.name = "UnsupportedOperationException";
217
- this.$fault = "client";
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
- export class InvalidResourcePolicyException extends __BaseException {
223
- constructor(opts) {
224
- super({
225
- name: "InvalidResourcePolicyException",
226
- $fault: "client",
227
- ...opts,
228
- });
229
- this.name = "InvalidResourcePolicyException";
230
- this.$fault = "client";
231
- Object.setPrototypeOf(this, InvalidResourcePolicyException.prototype);
232
- this.Message = opts.Message;
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
- export class LogDestinationPermissionException extends __BaseException {
257
- constructor(opts) {
258
- super({
259
- name: "LogDestinationPermissionException",
260
- $fault: "client",
261
- ...opts,
262
- });
263
- this.name = "LogDestinationPermissionException";
264
- this.$fault = "client";
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
- export class ResourceOwnerCheckException extends __BaseException {
270
- constructor(opts) {
271
- super({
272
- name: "ResourceOwnerCheckException",
273
- $fault: "client",
274
- ...opts,
275
- });
276
- this.name = "ResourceOwnerCheckException";
277
- this.$fault = "client";
278
- Object.setPrototypeOf(this, ResourceOwnerCheckException.prototype);
279
- this.Message = opts.Message;
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
- export const DimensionFilterSensitiveLog = (obj) => ({
283
- ...obj,
284
- });
285
- export const PublishMetricActionFilterSensitiveLog = (obj) => ({
286
- ...obj,
287
- });
288
- export const ActionDefinitionFilterSensitiveLog = (obj) => ({
289
- ...obj,
290
- });
291
- export const AddressFilterSensitiveLog = (obj) => ({
292
- ...obj,
293
- });
294
- export const AssociateFirewallPolicyRequestFilterSensitiveLog = (obj) => ({
295
- ...obj,
296
- });
297
- export const AssociateFirewallPolicyResponseFilterSensitiveLog = (obj) => ({
298
- ...obj,
299
- });
300
- export const SubnetMappingFilterSensitiveLog = (obj) => ({
301
- ...obj,
302
- });
303
- export const AssociateSubnetsRequestFilterSensitiveLog = (obj) => ({
304
- ...obj,
305
- });
306
- export const AssociateSubnetsResponseFilterSensitiveLog = (obj) => ({
307
- ...obj,
308
- });
309
- export const AttachmentFilterSensitiveLog = (obj) => ({
310
- ...obj,
311
- });
312
- export const IPSetMetadataFilterSensitiveLog = (obj) => ({
313
- ...obj,
314
- });
315
- export const CIDRSummaryFilterSensitiveLog = (obj) => ({
316
- ...obj,
317
- });
318
- export const CapacityUsageSummaryFilterSensitiveLog = (obj) => ({
319
- ...obj,
320
- });
321
- export const EncryptionConfigurationFilterSensitiveLog = (obj) => ({
322
- ...obj,
323
- });
324
- export const TagFilterSensitiveLog = (obj) => ({
325
- ...obj,
326
- });
327
- export const CreateFirewallRequestFilterSensitiveLog = (obj) => ({
328
- ...obj,
329
- });
330
- export const FirewallFilterSensitiveLog = (obj) => ({
331
- ...obj,
332
- });
333
- export const PerObjectStatusFilterSensitiveLog = (obj) => ({
334
- ...obj,
335
- });
336
- export const SyncStateFilterSensitiveLog = (obj) => ({
337
- ...obj,
338
- });
339
- export const FirewallStatusFilterSensitiveLog = (obj) => ({
340
- ...obj,
341
- });
342
- export const CreateFirewallResponseFilterSensitiveLog = (obj) => ({
343
- ...obj,
344
- });
345
- export const StatefulEngineOptionsFilterSensitiveLog = (obj) => ({
346
- ...obj,
347
- });
348
- export const StatefulRuleGroupOverrideFilterSensitiveLog = (obj) => ({
349
- ...obj,
350
- });
351
- export const StatefulRuleGroupReferenceFilterSensitiveLog = (obj) => ({
352
- ...obj,
353
- });
354
- export const CustomActionFilterSensitiveLog = (obj) => ({
355
- ...obj,
356
- });
357
- export const StatelessRuleGroupReferenceFilterSensitiveLog = (obj) => ({
358
- ...obj,
359
- });
360
- export const FirewallPolicyFilterSensitiveLog = (obj) => ({
361
- ...obj,
362
- });
363
- export const CreateFirewallPolicyRequestFilterSensitiveLog = (obj) => ({
364
- ...obj,
365
- });
366
- export const FirewallPolicyResponseFilterSensitiveLog = (obj) => ({
367
- ...obj,
368
- });
369
- export const CreateFirewallPolicyResponseFilterSensitiveLog = (obj) => ({
370
- ...obj,
371
- });
372
- export const IPSetReferenceFilterSensitiveLog = (obj) => ({
373
- ...obj,
374
- });
375
- export const ReferenceSetsFilterSensitiveLog = (obj) => ({
376
- ...obj,
377
- });
378
- export const RulesSourceListFilterSensitiveLog = (obj) => ({
379
- ...obj,
380
- });
381
- export const HeaderFilterSensitiveLog = (obj) => ({
382
- ...obj,
383
- });
384
- export const RuleOptionFilterSensitiveLog = (obj) => ({
385
- ...obj,
386
- });
387
- export const StatefulRuleFilterSensitiveLog = (obj) => ({
388
- ...obj,
389
- });
390
- export const PortRangeFilterSensitiveLog = (obj) => ({
391
- ...obj,
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)); };