@aws-sdk/client-network-firewall 3.131.0 → 3.141.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AssociateFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/AssociateSubnetsCommand.js +2 -2
- package/dist-cjs/commands/CreateFirewallCommand.js +2 -2
- package/dist-cjs/commands/CreateFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/CreateRuleGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteFirewallCommand.js +2 -2
- package/dist-cjs/commands/DeleteFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteRuleGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeFirewallCommand.js +2 -2
- package/dist-cjs/commands/DescribeFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/DescribeLoggingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DescribeResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/DescribeRuleGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeRuleGroupMetadataCommand.js +2 -2
- package/dist-cjs/commands/DisassociateSubnetsCommand.js +2 -2
- package/dist-cjs/commands/ListFirewallPoliciesCommand.js +2 -2
- package/dist-cjs/commands/ListFirewallsCommand.js +2 -2
- package/dist-cjs/commands/ListRuleGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallDeleteProtectionCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallDescriptionCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallEncryptionConfigurationCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallPolicyChangeProtectionCommand.js +2 -2
- package/dist-cjs/commands/UpdateFirewallPolicyCommand.js +2 -2
- package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/UpdateRuleGroupCommand.js +2 -2
- package/dist-cjs/commands/UpdateSubnetChangeProtectionCommand.js +2 -2
- package/dist-cjs/models/models_0.js +441 -627
- package/dist-cjs/protocols/Aws_json1_0.js +83 -0
- package/dist-es/commands/AssociateFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/AssociateSubnetsCommand.js +3 -3
- package/dist-es/commands/CreateFirewallCommand.js +3 -3
- package/dist-es/commands/CreateFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/CreateRuleGroupCommand.js +3 -3
- package/dist-es/commands/DeleteFirewallCommand.js +3 -3
- package/dist-es/commands/DeleteFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -3
- package/dist-es/commands/DeleteRuleGroupCommand.js +3 -3
- package/dist-es/commands/DescribeFirewallCommand.js +3 -3
- package/dist-es/commands/DescribeFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/DescribeLoggingConfigurationCommand.js +3 -3
- package/dist-es/commands/DescribeResourcePolicyCommand.js +3 -3
- package/dist-es/commands/DescribeRuleGroupCommand.js +3 -3
- package/dist-es/commands/DescribeRuleGroupMetadataCommand.js +3 -3
- package/dist-es/commands/DisassociateSubnetsCommand.js +3 -3
- package/dist-es/commands/ListFirewallPoliciesCommand.js +3 -3
- package/dist-es/commands/ListFirewallsCommand.js +3 -3
- package/dist-es/commands/ListRuleGroupsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutResourcePolicyCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallDeleteProtectionCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallDescriptionCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallEncryptionConfigurationCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallPolicyChangeProtectionCommand.js +3 -3
- package/dist-es/commands/UpdateFirewallPolicyCommand.js +3 -3
- package/dist-es/commands/UpdateLoggingConfigurationCommand.js +3 -3
- package/dist-es/commands/UpdateRuleGroupCommand.js +3 -3
- package/dist-es/commands/UpdateSubnetChangeProtectionCommand.js +3 -3
- package/dist-es/models/models_0.js +111 -416
- package/dist-es/protocols/Aws_json1_0.js +76 -1
- package/dist-types/models/models_0.d.ts +494 -616
- package/dist-types/ts3.4/models/models_0.d.ts +248 -411
- package/package.json +6 -6
|
@@ -5,37 +5,21 @@ export interface Dimension {
|
|
|
5
5
|
|
|
6
6
|
Value: string | undefined;
|
|
7
7
|
}
|
|
8
|
-
export declare namespace Dimension {
|
|
9
|
-
|
|
10
|
-
const filterSensitiveLog: (obj: Dimension) => any;
|
|
11
|
-
}
|
|
12
8
|
|
|
13
9
|
export interface PublishMetricAction {
|
|
14
10
|
|
|
15
11
|
Dimensions: Dimension[] | undefined;
|
|
16
12
|
}
|
|
17
|
-
export declare namespace PublishMetricAction {
|
|
18
|
-
|
|
19
|
-
const filterSensitiveLog: (obj: PublishMetricAction) => any;
|
|
20
|
-
}
|
|
21
13
|
|
|
22
14
|
export interface ActionDefinition {
|
|
23
15
|
|
|
24
16
|
PublishMetricAction?: PublishMetricAction;
|
|
25
17
|
}
|
|
26
|
-
export declare namespace ActionDefinition {
|
|
27
|
-
|
|
28
|
-
const filterSensitiveLog: (obj: ActionDefinition) => any;
|
|
29
|
-
}
|
|
30
18
|
|
|
31
19
|
export interface Address {
|
|
32
20
|
|
|
33
21
|
AddressDefinition: string | undefined;
|
|
34
22
|
}
|
|
35
|
-
export declare namespace Address {
|
|
36
|
-
|
|
37
|
-
const filterSensitiveLog: (obj: Address) => any;
|
|
38
|
-
}
|
|
39
23
|
export interface AssociateFirewallPolicyRequest {
|
|
40
24
|
|
|
41
25
|
UpdateToken?: string;
|
|
@@ -46,10 +30,6 @@ export interface AssociateFirewallPolicyRequest {
|
|
|
46
30
|
|
|
47
31
|
FirewallPolicyArn: string | undefined;
|
|
48
32
|
}
|
|
49
|
-
export declare namespace AssociateFirewallPolicyRequest {
|
|
50
|
-
|
|
51
|
-
const filterSensitiveLog: (obj: AssociateFirewallPolicyRequest) => any;
|
|
52
|
-
}
|
|
53
33
|
export interface AssociateFirewallPolicyResponse {
|
|
54
34
|
|
|
55
35
|
FirewallArn?: string;
|
|
@@ -60,10 +40,6 @@ export interface AssociateFirewallPolicyResponse {
|
|
|
60
40
|
|
|
61
41
|
UpdateToken?: string;
|
|
62
42
|
}
|
|
63
|
-
export declare namespace AssociateFirewallPolicyResponse {
|
|
64
|
-
|
|
65
|
-
const filterSensitiveLog: (obj: AssociateFirewallPolicyResponse) => any;
|
|
66
|
-
}
|
|
67
43
|
|
|
68
44
|
export declare class InternalServerError extends __BaseException {
|
|
69
45
|
readonly name: "InternalServerError";
|
|
@@ -117,10 +93,6 @@ export interface SubnetMapping {
|
|
|
117
93
|
|
|
118
94
|
SubnetId: string | undefined;
|
|
119
95
|
}
|
|
120
|
-
export declare namespace SubnetMapping {
|
|
121
|
-
|
|
122
|
-
const filterSensitiveLog: (obj: SubnetMapping) => any;
|
|
123
|
-
}
|
|
124
96
|
export interface AssociateSubnetsRequest {
|
|
125
97
|
|
|
126
98
|
UpdateToken?: string;
|
|
@@ -131,10 +103,6 @@ export interface AssociateSubnetsRequest {
|
|
|
131
103
|
|
|
132
104
|
SubnetMappings: SubnetMapping[] | undefined;
|
|
133
105
|
}
|
|
134
|
-
export declare namespace AssociateSubnetsRequest {
|
|
135
|
-
|
|
136
|
-
const filterSensitiveLog: (obj: AssociateSubnetsRequest) => any;
|
|
137
|
-
}
|
|
138
106
|
export interface AssociateSubnetsResponse {
|
|
139
107
|
|
|
140
108
|
FirewallArn?: string;
|
|
@@ -145,10 +113,6 @@ export interface AssociateSubnetsResponse {
|
|
|
145
113
|
|
|
146
114
|
UpdateToken?: string;
|
|
147
115
|
}
|
|
148
|
-
export declare namespace AssociateSubnetsResponse {
|
|
149
|
-
|
|
150
|
-
const filterSensitiveLog: (obj: AssociateSubnetsResponse) => any;
|
|
151
|
-
}
|
|
152
116
|
|
|
153
117
|
export declare class InsufficientCapacityException extends __BaseException {
|
|
154
118
|
readonly name: "InsufficientCapacityException";
|
|
@@ -172,11 +136,27 @@ export interface Attachment {
|
|
|
172
136
|
|
|
173
137
|
Status?: AttachmentStatus | string;
|
|
174
138
|
}
|
|
175
|
-
|
|
139
|
+
|
|
140
|
+
export interface IPSetMetadata {
|
|
176
141
|
|
|
177
|
-
|
|
142
|
+
ResolvedCIDRCount?: number;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface CIDRSummary {
|
|
146
|
+
|
|
147
|
+
AvailableCIDRCount?: number;
|
|
148
|
+
|
|
149
|
+
UtilizedCIDRCount?: number;
|
|
150
|
+
|
|
151
|
+
IPSetReferences?: Record<string, IPSetMetadata>;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface CapacityUsageSummary {
|
|
155
|
+
|
|
156
|
+
CIDRs?: CIDRSummary;
|
|
178
157
|
}
|
|
179
158
|
export declare enum ConfigurationSyncState {
|
|
159
|
+
CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
|
|
180
160
|
IN_SYNC = "IN_SYNC",
|
|
181
161
|
PENDING = "PENDING"
|
|
182
162
|
}
|
|
@@ -191,10 +171,6 @@ export interface EncryptionConfiguration {
|
|
|
191
171
|
|
|
192
172
|
Type: EncryptionType | string | undefined;
|
|
193
173
|
}
|
|
194
|
-
export declare namespace EncryptionConfiguration {
|
|
195
|
-
|
|
196
|
-
const filterSensitiveLog: (obj: EncryptionConfiguration) => any;
|
|
197
|
-
}
|
|
198
174
|
|
|
199
175
|
export interface Tag {
|
|
200
176
|
|
|
@@ -202,10 +178,6 @@ export interface Tag {
|
|
|
202
178
|
|
|
203
179
|
Value: string | undefined;
|
|
204
180
|
}
|
|
205
|
-
export declare namespace Tag {
|
|
206
|
-
|
|
207
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
208
|
-
}
|
|
209
181
|
export interface CreateFirewallRequest {
|
|
210
182
|
|
|
211
183
|
FirewallName: string | undefined;
|
|
@@ -228,10 +200,6 @@ export interface CreateFirewallRequest {
|
|
|
228
200
|
|
|
229
201
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
230
202
|
}
|
|
231
|
-
export declare namespace CreateFirewallRequest {
|
|
232
|
-
|
|
233
|
-
const filterSensitiveLog: (obj: CreateFirewallRequest) => any;
|
|
234
|
-
}
|
|
235
203
|
|
|
236
204
|
export interface Firewall {
|
|
237
205
|
|
|
@@ -259,16 +227,13 @@ export interface Firewall {
|
|
|
259
227
|
|
|
260
228
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
261
229
|
}
|
|
262
|
-
export declare namespace Firewall {
|
|
263
|
-
|
|
264
|
-
const filterSensitiveLog: (obj: Firewall) => any;
|
|
265
|
-
}
|
|
266
230
|
export declare enum FirewallStatusValue {
|
|
267
231
|
DELETING = "DELETING",
|
|
268
232
|
PROVISIONING = "PROVISIONING",
|
|
269
233
|
READY = "READY"
|
|
270
234
|
}
|
|
271
235
|
export declare enum PerObjectSyncStatus {
|
|
236
|
+
CAPACITY_CONSTRAINED = "CAPACITY_CONSTRAINED",
|
|
272
237
|
IN_SYNC = "IN_SYNC",
|
|
273
238
|
PENDING = "PENDING"
|
|
274
239
|
}
|
|
@@ -279,10 +244,6 @@ export interface PerObjectStatus {
|
|
|
279
244
|
|
|
280
245
|
UpdateToken?: string;
|
|
281
246
|
}
|
|
282
|
-
export declare namespace PerObjectStatus {
|
|
283
|
-
|
|
284
|
-
const filterSensitiveLog: (obj: PerObjectStatus) => any;
|
|
285
|
-
}
|
|
286
247
|
|
|
287
248
|
export interface SyncState {
|
|
288
249
|
|
|
@@ -290,10 +251,6 @@ export interface SyncState {
|
|
|
290
251
|
|
|
291
252
|
Config?: Record<string, PerObjectStatus>;
|
|
292
253
|
}
|
|
293
|
-
export declare namespace SyncState {
|
|
294
|
-
|
|
295
|
-
const filterSensitiveLog: (obj: SyncState) => any;
|
|
296
|
-
}
|
|
297
254
|
|
|
298
255
|
export interface FirewallStatus {
|
|
299
256
|
|
|
@@ -302,10 +259,8 @@ export interface FirewallStatus {
|
|
|
302
259
|
ConfigurationSyncStateSummary: ConfigurationSyncState | string | undefined;
|
|
303
260
|
|
|
304
261
|
SyncStates?: Record<string, SyncState>;
|
|
305
|
-
}
|
|
306
|
-
export declare namespace FirewallStatus {
|
|
307
262
|
|
|
308
|
-
|
|
263
|
+
CapacityUsageSummary?: CapacityUsageSummary;
|
|
309
264
|
}
|
|
310
265
|
export interface CreateFirewallResponse {
|
|
311
266
|
|
|
@@ -313,10 +268,6 @@ export interface CreateFirewallResponse {
|
|
|
313
268
|
|
|
314
269
|
FirewallStatus?: FirewallStatus;
|
|
315
270
|
}
|
|
316
|
-
export declare namespace CreateFirewallResponse {
|
|
317
|
-
|
|
318
|
-
const filterSensitiveLog: (obj: CreateFirewallResponse) => any;
|
|
319
|
-
}
|
|
320
271
|
|
|
321
272
|
export declare class LimitExceededException extends __BaseException {
|
|
322
273
|
readonly name: "LimitExceededException";
|
|
@@ -334,10 +285,6 @@ export interface StatefulEngineOptions {
|
|
|
334
285
|
|
|
335
286
|
RuleOrder?: RuleOrder | string;
|
|
336
287
|
}
|
|
337
|
-
export declare namespace StatefulEngineOptions {
|
|
338
|
-
|
|
339
|
-
const filterSensitiveLog: (obj: StatefulEngineOptions) => any;
|
|
340
|
-
}
|
|
341
288
|
export declare enum OverrideAction {
|
|
342
289
|
DROP_TO_ALERT = "DROP_TO_ALERT"
|
|
343
290
|
}
|
|
@@ -346,10 +293,6 @@ export interface StatefulRuleGroupOverride {
|
|
|
346
293
|
|
|
347
294
|
Action?: OverrideAction | string;
|
|
348
295
|
}
|
|
349
|
-
export declare namespace StatefulRuleGroupOverride {
|
|
350
|
-
|
|
351
|
-
const filterSensitiveLog: (obj: StatefulRuleGroupOverride) => any;
|
|
352
|
-
}
|
|
353
296
|
|
|
354
297
|
export interface StatefulRuleGroupReference {
|
|
355
298
|
|
|
@@ -359,10 +302,6 @@ export interface StatefulRuleGroupReference {
|
|
|
359
302
|
|
|
360
303
|
Override?: StatefulRuleGroupOverride;
|
|
361
304
|
}
|
|
362
|
-
export declare namespace StatefulRuleGroupReference {
|
|
363
|
-
|
|
364
|
-
const filterSensitiveLog: (obj: StatefulRuleGroupReference) => any;
|
|
365
|
-
}
|
|
366
305
|
|
|
367
306
|
export interface CustomAction {
|
|
368
307
|
|
|
@@ -370,10 +309,6 @@ export interface CustomAction {
|
|
|
370
309
|
|
|
371
310
|
ActionDefinition: ActionDefinition | undefined;
|
|
372
311
|
}
|
|
373
|
-
export declare namespace CustomAction {
|
|
374
|
-
|
|
375
|
-
const filterSensitiveLog: (obj: CustomAction) => any;
|
|
376
|
-
}
|
|
377
312
|
|
|
378
313
|
export interface StatelessRuleGroupReference {
|
|
379
314
|
|
|
@@ -381,10 +316,6 @@ export interface StatelessRuleGroupReference {
|
|
|
381
316
|
|
|
382
317
|
Priority: number | undefined;
|
|
383
318
|
}
|
|
384
|
-
export declare namespace StatelessRuleGroupReference {
|
|
385
|
-
|
|
386
|
-
const filterSensitiveLog: (obj: StatelessRuleGroupReference) => any;
|
|
387
|
-
}
|
|
388
319
|
|
|
389
320
|
export interface FirewallPolicy {
|
|
390
321
|
|
|
@@ -402,10 +333,6 @@ export interface FirewallPolicy {
|
|
|
402
333
|
|
|
403
334
|
StatefulEngineOptions?: StatefulEngineOptions;
|
|
404
335
|
}
|
|
405
|
-
export declare namespace FirewallPolicy {
|
|
406
|
-
|
|
407
|
-
const filterSensitiveLog: (obj: FirewallPolicy) => any;
|
|
408
|
-
}
|
|
409
336
|
export interface CreateFirewallPolicyRequest {
|
|
410
337
|
|
|
411
338
|
FirewallPolicyName: string | undefined;
|
|
@@ -420,10 +347,6 @@ export interface CreateFirewallPolicyRequest {
|
|
|
420
347
|
|
|
421
348
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
422
349
|
}
|
|
423
|
-
export declare namespace CreateFirewallPolicyRequest {
|
|
424
|
-
|
|
425
|
-
const filterSensitiveLog: (obj: CreateFirewallPolicyRequest) => any;
|
|
426
|
-
}
|
|
427
350
|
export declare enum ResourceStatus {
|
|
428
351
|
ACTIVE = "ACTIVE",
|
|
429
352
|
DELETING = "DELETING"
|
|
@@ -453,19 +376,21 @@ export interface FirewallPolicyResponse {
|
|
|
453
376
|
|
|
454
377
|
LastModifiedTime?: Date;
|
|
455
378
|
}
|
|
456
|
-
export declare namespace FirewallPolicyResponse {
|
|
457
|
-
|
|
458
|
-
const filterSensitiveLog: (obj: FirewallPolicyResponse) => any;
|
|
459
|
-
}
|
|
460
379
|
export interface CreateFirewallPolicyResponse {
|
|
461
380
|
|
|
462
381
|
UpdateToken: string | undefined;
|
|
463
382
|
|
|
464
383
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
465
384
|
}
|
|
466
|
-
|
|
385
|
+
|
|
386
|
+
export interface IPSetReference {
|
|
387
|
+
|
|
388
|
+
ReferenceArn?: string;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
export interface ReferenceSets {
|
|
467
392
|
|
|
468
|
-
|
|
393
|
+
IPSetReferences?: Record<string, IPSetReference>;
|
|
469
394
|
}
|
|
470
395
|
export declare enum GeneratedRulesType {
|
|
471
396
|
ALLOWLIST = "ALLOWLIST",
|
|
@@ -484,10 +409,6 @@ export interface RulesSourceList {
|
|
|
484
409
|
|
|
485
410
|
GeneratedRulesType: GeneratedRulesType | string | undefined;
|
|
486
411
|
}
|
|
487
|
-
export declare namespace RulesSourceList {
|
|
488
|
-
|
|
489
|
-
const filterSensitiveLog: (obj: RulesSourceList) => any;
|
|
490
|
-
}
|
|
491
412
|
export declare enum StatefulAction {
|
|
492
413
|
ALERT = "ALERT",
|
|
493
414
|
DROP = "DROP",
|
|
@@ -533,10 +454,6 @@ export interface Header {
|
|
|
533
454
|
|
|
534
455
|
DestinationPort: string | undefined;
|
|
535
456
|
}
|
|
536
|
-
export declare namespace Header {
|
|
537
|
-
|
|
538
|
-
const filterSensitiveLog: (obj: Header) => any;
|
|
539
|
-
}
|
|
540
457
|
|
|
541
458
|
export interface RuleOption {
|
|
542
459
|
|
|
@@ -544,10 +461,6 @@ export interface RuleOption {
|
|
|
544
461
|
|
|
545
462
|
Settings?: string[];
|
|
546
463
|
}
|
|
547
|
-
export declare namespace RuleOption {
|
|
548
|
-
|
|
549
|
-
const filterSensitiveLog: (obj: RuleOption) => any;
|
|
550
|
-
}
|
|
551
464
|
|
|
552
465
|
export interface StatefulRule {
|
|
553
466
|
|
|
@@ -557,10 +470,6 @@ export interface StatefulRule {
|
|
|
557
470
|
|
|
558
471
|
RuleOptions: RuleOption[] | undefined;
|
|
559
472
|
}
|
|
560
|
-
export declare namespace StatefulRule {
|
|
561
|
-
|
|
562
|
-
const filterSensitiveLog: (obj: StatefulRule) => any;
|
|
563
|
-
}
|
|
564
473
|
|
|
565
474
|
export interface PortRange {
|
|
566
475
|
|
|
@@ -568,10 +477,6 @@ export interface PortRange {
|
|
|
568
477
|
|
|
569
478
|
ToPort: number | undefined;
|
|
570
479
|
}
|
|
571
|
-
export declare namespace PortRange {
|
|
572
|
-
|
|
573
|
-
const filterSensitiveLog: (obj: PortRange) => any;
|
|
574
|
-
}
|
|
575
480
|
export declare enum TCPFlag {
|
|
576
481
|
ACK = "ACK",
|
|
577
482
|
CWR = "CWR",
|
|
@@ -589,10 +494,6 @@ export interface TCPFlagField {
|
|
|
589
494
|
|
|
590
495
|
Masks?: (TCPFlag | string)[];
|
|
591
496
|
}
|
|
592
|
-
export declare namespace TCPFlagField {
|
|
593
|
-
|
|
594
|
-
const filterSensitiveLog: (obj: TCPFlagField) => any;
|
|
595
|
-
}
|
|
596
497
|
|
|
597
498
|
export interface MatchAttributes {
|
|
598
499
|
|
|
@@ -608,10 +509,6 @@ export interface MatchAttributes {
|
|
|
608
509
|
|
|
609
510
|
TCPFlags?: TCPFlagField[];
|
|
610
511
|
}
|
|
611
|
-
export declare namespace MatchAttributes {
|
|
612
|
-
|
|
613
|
-
const filterSensitiveLog: (obj: MatchAttributes) => any;
|
|
614
|
-
}
|
|
615
512
|
|
|
616
513
|
export interface RuleDefinition {
|
|
617
514
|
|
|
@@ -619,10 +516,6 @@ export interface RuleDefinition {
|
|
|
619
516
|
|
|
620
517
|
Actions: string[] | undefined;
|
|
621
518
|
}
|
|
622
|
-
export declare namespace RuleDefinition {
|
|
623
|
-
|
|
624
|
-
const filterSensitiveLog: (obj: RuleDefinition) => any;
|
|
625
|
-
}
|
|
626
519
|
|
|
627
520
|
export interface StatelessRule {
|
|
628
521
|
|
|
@@ -630,10 +523,6 @@ export interface StatelessRule {
|
|
|
630
523
|
|
|
631
524
|
Priority: number | undefined;
|
|
632
525
|
}
|
|
633
|
-
export declare namespace StatelessRule {
|
|
634
|
-
|
|
635
|
-
const filterSensitiveLog: (obj: StatelessRule) => any;
|
|
636
|
-
}
|
|
637
526
|
|
|
638
527
|
export interface StatelessRulesAndCustomActions {
|
|
639
528
|
|
|
@@ -641,10 +530,6 @@ export interface StatelessRulesAndCustomActions {
|
|
|
641
530
|
|
|
642
531
|
CustomActions?: CustomAction[];
|
|
643
532
|
}
|
|
644
|
-
export declare namespace StatelessRulesAndCustomActions {
|
|
645
|
-
|
|
646
|
-
const filterSensitiveLog: (obj: StatelessRulesAndCustomActions) => any;
|
|
647
|
-
}
|
|
648
533
|
|
|
649
534
|
export interface RulesSource {
|
|
650
535
|
|
|
@@ -656,28 +541,16 @@ export interface RulesSource {
|
|
|
656
541
|
|
|
657
542
|
StatelessRulesAndCustomActions?: StatelessRulesAndCustomActions;
|
|
658
543
|
}
|
|
659
|
-
export declare namespace RulesSource {
|
|
660
|
-
|
|
661
|
-
const filterSensitiveLog: (obj: RulesSource) => any;
|
|
662
|
-
}
|
|
663
544
|
|
|
664
545
|
export interface IPSet {
|
|
665
546
|
|
|
666
547
|
Definition: string[] | undefined;
|
|
667
548
|
}
|
|
668
|
-
export declare namespace IPSet {
|
|
669
|
-
|
|
670
|
-
const filterSensitiveLog: (obj: IPSet) => any;
|
|
671
|
-
}
|
|
672
549
|
|
|
673
550
|
export interface PortSet {
|
|
674
551
|
|
|
675
552
|
Definition?: string[];
|
|
676
553
|
}
|
|
677
|
-
export declare namespace PortSet {
|
|
678
|
-
|
|
679
|
-
const filterSensitiveLog: (obj: PortSet) => any;
|
|
680
|
-
}
|
|
681
554
|
|
|
682
555
|
export interface RuleVariables {
|
|
683
556
|
|
|
@@ -685,32 +558,22 @@ export interface RuleVariables {
|
|
|
685
558
|
|
|
686
559
|
PortSets?: Record<string, PortSet>;
|
|
687
560
|
}
|
|
688
|
-
export declare namespace RuleVariables {
|
|
689
|
-
|
|
690
|
-
const filterSensitiveLog: (obj: RuleVariables) => any;
|
|
691
|
-
}
|
|
692
561
|
|
|
693
562
|
export interface StatefulRuleOptions {
|
|
694
563
|
|
|
695
564
|
RuleOrder?: RuleOrder | string;
|
|
696
565
|
}
|
|
697
|
-
export declare namespace StatefulRuleOptions {
|
|
698
|
-
|
|
699
|
-
const filterSensitiveLog: (obj: StatefulRuleOptions) => any;
|
|
700
|
-
}
|
|
701
566
|
|
|
702
567
|
export interface RuleGroup {
|
|
703
568
|
|
|
704
569
|
RuleVariables?: RuleVariables;
|
|
705
570
|
|
|
571
|
+
ReferenceSets?: ReferenceSets;
|
|
572
|
+
|
|
706
573
|
RulesSource: RulesSource | undefined;
|
|
707
574
|
|
|
708
575
|
StatefulRuleOptions?: StatefulRuleOptions;
|
|
709
576
|
}
|
|
710
|
-
export declare namespace RuleGroup {
|
|
711
|
-
|
|
712
|
-
const filterSensitiveLog: (obj: RuleGroup) => any;
|
|
713
|
-
}
|
|
714
577
|
|
|
715
578
|
export interface SourceMetadata {
|
|
716
579
|
|
|
@@ -718,10 +581,6 @@ export interface SourceMetadata {
|
|
|
718
581
|
|
|
719
582
|
SourceUpdateToken?: string;
|
|
720
583
|
}
|
|
721
|
-
export declare namespace SourceMetadata {
|
|
722
|
-
|
|
723
|
-
const filterSensitiveLog: (obj: SourceMetadata) => any;
|
|
724
|
-
}
|
|
725
584
|
export declare enum RuleGroupType {
|
|
726
585
|
STATEFUL = "STATEFUL",
|
|
727
586
|
STATELESS = "STATELESS"
|
|
@@ -748,10 +607,6 @@ export interface CreateRuleGroupRequest {
|
|
|
748
607
|
|
|
749
608
|
SourceMetadata?: SourceMetadata;
|
|
750
609
|
}
|
|
751
|
-
export declare namespace CreateRuleGroupRequest {
|
|
752
|
-
|
|
753
|
-
const filterSensitiveLog: (obj: CreateRuleGroupRequest) => any;
|
|
754
|
-
}
|
|
755
610
|
|
|
756
611
|
export interface RuleGroupResponse {
|
|
757
612
|
|
|
@@ -783,40 +638,24 @@ export interface RuleGroupResponse {
|
|
|
783
638
|
|
|
784
639
|
LastModifiedTime?: Date;
|
|
785
640
|
}
|
|
786
|
-
export declare namespace RuleGroupResponse {
|
|
787
|
-
|
|
788
|
-
const filterSensitiveLog: (obj: RuleGroupResponse) => any;
|
|
789
|
-
}
|
|
790
641
|
export interface CreateRuleGroupResponse {
|
|
791
642
|
|
|
792
643
|
UpdateToken: string | undefined;
|
|
793
644
|
|
|
794
645
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
795
646
|
}
|
|
796
|
-
export declare namespace CreateRuleGroupResponse {
|
|
797
|
-
|
|
798
|
-
const filterSensitiveLog: (obj: CreateRuleGroupResponse) => any;
|
|
799
|
-
}
|
|
800
647
|
export interface DeleteFirewallRequest {
|
|
801
648
|
|
|
802
649
|
FirewallName?: string;
|
|
803
650
|
|
|
804
651
|
FirewallArn?: string;
|
|
805
652
|
}
|
|
806
|
-
export declare namespace DeleteFirewallRequest {
|
|
807
|
-
|
|
808
|
-
const filterSensitiveLog: (obj: DeleteFirewallRequest) => any;
|
|
809
|
-
}
|
|
810
653
|
export interface DeleteFirewallResponse {
|
|
811
654
|
|
|
812
655
|
Firewall?: Firewall;
|
|
813
656
|
|
|
814
657
|
FirewallStatus?: FirewallStatus;
|
|
815
658
|
}
|
|
816
|
-
export declare namespace DeleteFirewallResponse {
|
|
817
|
-
|
|
818
|
-
const filterSensitiveLog: (obj: DeleteFirewallResponse) => any;
|
|
819
|
-
}
|
|
820
659
|
|
|
821
660
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
822
661
|
readonly name: "UnsupportedOperationException";
|
|
@@ -831,32 +670,16 @@ export interface DeleteFirewallPolicyRequest {
|
|
|
831
670
|
|
|
832
671
|
FirewallPolicyArn?: string;
|
|
833
672
|
}
|
|
834
|
-
export declare namespace DeleteFirewallPolicyRequest {
|
|
835
|
-
|
|
836
|
-
const filterSensitiveLog: (obj: DeleteFirewallPolicyRequest) => any;
|
|
837
|
-
}
|
|
838
673
|
export interface DeleteFirewallPolicyResponse {
|
|
839
674
|
|
|
840
675
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
841
676
|
}
|
|
842
|
-
export declare namespace DeleteFirewallPolicyResponse {
|
|
843
|
-
|
|
844
|
-
const filterSensitiveLog: (obj: DeleteFirewallPolicyResponse) => any;
|
|
845
|
-
}
|
|
846
677
|
export interface DeleteResourcePolicyRequest {
|
|
847
678
|
|
|
848
679
|
ResourceArn: string | undefined;
|
|
849
680
|
}
|
|
850
|
-
export declare namespace DeleteResourcePolicyRequest {
|
|
851
|
-
|
|
852
|
-
const filterSensitiveLog: (obj: DeleteResourcePolicyRequest) => any;
|
|
853
|
-
}
|
|
854
681
|
export interface DeleteResourcePolicyResponse {
|
|
855
682
|
}
|
|
856
|
-
export declare namespace DeleteResourcePolicyResponse {
|
|
857
|
-
|
|
858
|
-
const filterSensitiveLog: (obj: DeleteResourcePolicyResponse) => any;
|
|
859
|
-
}
|
|
860
683
|
|
|
861
684
|
export declare class InvalidResourcePolicyException extends __BaseException {
|
|
862
685
|
readonly name: "InvalidResourcePolicyException";
|
|
@@ -873,28 +696,16 @@ export interface DeleteRuleGroupRequest {
|
|
|
873
696
|
|
|
874
697
|
Type?: RuleGroupType | string;
|
|
875
698
|
}
|
|
876
|
-
export declare namespace DeleteRuleGroupRequest {
|
|
877
|
-
|
|
878
|
-
const filterSensitiveLog: (obj: DeleteRuleGroupRequest) => any;
|
|
879
|
-
}
|
|
880
699
|
export interface DeleteRuleGroupResponse {
|
|
881
700
|
|
|
882
701
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
883
702
|
}
|
|
884
|
-
export declare namespace DeleteRuleGroupResponse {
|
|
885
|
-
|
|
886
|
-
const filterSensitiveLog: (obj: DeleteRuleGroupResponse) => any;
|
|
887
|
-
}
|
|
888
703
|
export interface DescribeFirewallRequest {
|
|
889
704
|
|
|
890
705
|
FirewallName?: string;
|
|
891
706
|
|
|
892
707
|
FirewallArn?: string;
|
|
893
708
|
}
|
|
894
|
-
export declare namespace DescribeFirewallRequest {
|
|
895
|
-
|
|
896
|
-
const filterSensitiveLog: (obj: DescribeFirewallRequest) => any;
|
|
897
|
-
}
|
|
898
709
|
export interface DescribeFirewallResponse {
|
|
899
710
|
|
|
900
711
|
UpdateToken?: string;
|
|
@@ -903,20 +714,12 @@ export interface DescribeFirewallResponse {
|
|
|
903
714
|
|
|
904
715
|
FirewallStatus?: FirewallStatus;
|
|
905
716
|
}
|
|
906
|
-
export declare namespace DescribeFirewallResponse {
|
|
907
|
-
|
|
908
|
-
const filterSensitiveLog: (obj: DescribeFirewallResponse) => any;
|
|
909
|
-
}
|
|
910
717
|
export interface DescribeFirewallPolicyRequest {
|
|
911
718
|
|
|
912
719
|
FirewallPolicyName?: string;
|
|
913
720
|
|
|
914
721
|
FirewallPolicyArn?: string;
|
|
915
722
|
}
|
|
916
|
-
export declare namespace DescribeFirewallPolicyRequest {
|
|
917
|
-
|
|
918
|
-
const filterSensitiveLog: (obj: DescribeFirewallPolicyRequest) => any;
|
|
919
|
-
}
|
|
920
723
|
export interface DescribeFirewallPolicyResponse {
|
|
921
724
|
|
|
922
725
|
UpdateToken: string | undefined;
|
|
@@ -925,20 +728,12 @@ export interface DescribeFirewallPolicyResponse {
|
|
|
925
728
|
|
|
926
729
|
FirewallPolicy?: FirewallPolicy;
|
|
927
730
|
}
|
|
928
|
-
export declare namespace DescribeFirewallPolicyResponse {
|
|
929
|
-
|
|
930
|
-
const filterSensitiveLog: (obj: DescribeFirewallPolicyResponse) => any;
|
|
931
|
-
}
|
|
932
731
|
export interface DescribeLoggingConfigurationRequest {
|
|
933
732
|
|
|
934
733
|
FirewallArn?: string;
|
|
935
734
|
|
|
936
735
|
FirewallName?: string;
|
|
937
736
|
}
|
|
938
|
-
export declare namespace DescribeLoggingConfigurationRequest {
|
|
939
|
-
|
|
940
|
-
const filterSensitiveLog: (obj: DescribeLoggingConfigurationRequest) => any;
|
|
941
|
-
}
|
|
942
737
|
export declare enum LogDestinationType {
|
|
943
738
|
CLOUDWATCH_LOGS = "CloudWatchLogs",
|
|
944
739
|
KINESIS_DATA_FIREHOSE = "KinesisDataFirehose",
|
|
@@ -957,45 +752,25 @@ export interface LogDestinationConfig {
|
|
|
957
752
|
|
|
958
753
|
LogDestination: Record<string, string> | undefined;
|
|
959
754
|
}
|
|
960
|
-
export declare namespace LogDestinationConfig {
|
|
961
|
-
|
|
962
|
-
const filterSensitiveLog: (obj: LogDestinationConfig) => any;
|
|
963
|
-
}
|
|
964
755
|
|
|
965
756
|
export interface LoggingConfiguration {
|
|
966
757
|
|
|
967
758
|
LogDestinationConfigs: LogDestinationConfig[] | undefined;
|
|
968
759
|
}
|
|
969
|
-
export declare namespace LoggingConfiguration {
|
|
970
|
-
|
|
971
|
-
const filterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
972
|
-
}
|
|
973
760
|
export interface DescribeLoggingConfigurationResponse {
|
|
974
761
|
|
|
975
762
|
FirewallArn?: string;
|
|
976
763
|
|
|
977
764
|
LoggingConfiguration?: LoggingConfiguration;
|
|
978
765
|
}
|
|
979
|
-
export declare namespace DescribeLoggingConfigurationResponse {
|
|
980
|
-
|
|
981
|
-
const filterSensitiveLog: (obj: DescribeLoggingConfigurationResponse) => any;
|
|
982
|
-
}
|
|
983
766
|
export interface DescribeResourcePolicyRequest {
|
|
984
767
|
|
|
985
768
|
ResourceArn: string | undefined;
|
|
986
769
|
}
|
|
987
|
-
export declare namespace DescribeResourcePolicyRequest {
|
|
988
|
-
|
|
989
|
-
const filterSensitiveLog: (obj: DescribeResourcePolicyRequest) => any;
|
|
990
|
-
}
|
|
991
770
|
export interface DescribeResourcePolicyResponse {
|
|
992
771
|
|
|
993
772
|
Policy?: string;
|
|
994
773
|
}
|
|
995
|
-
export declare namespace DescribeResourcePolicyResponse {
|
|
996
|
-
|
|
997
|
-
const filterSensitiveLog: (obj: DescribeResourcePolicyResponse) => any;
|
|
998
|
-
}
|
|
999
774
|
export interface DescribeRuleGroupRequest {
|
|
1000
775
|
|
|
1001
776
|
RuleGroupName?: string;
|
|
@@ -1004,10 +779,6 @@ export interface DescribeRuleGroupRequest {
|
|
|
1004
779
|
|
|
1005
780
|
Type?: RuleGroupType | string;
|
|
1006
781
|
}
|
|
1007
|
-
export declare namespace DescribeRuleGroupRequest {
|
|
1008
|
-
|
|
1009
|
-
const filterSensitiveLog: (obj: DescribeRuleGroupRequest) => any;
|
|
1010
|
-
}
|
|
1011
782
|
export interface DescribeRuleGroupResponse {
|
|
1012
783
|
|
|
1013
784
|
UpdateToken: string | undefined;
|
|
@@ -1016,10 +787,6 @@ export interface DescribeRuleGroupResponse {
|
|
|
1016
787
|
|
|
1017
788
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
1018
789
|
}
|
|
1019
|
-
export declare namespace DescribeRuleGroupResponse {
|
|
1020
|
-
|
|
1021
|
-
const filterSensitiveLog: (obj: DescribeRuleGroupResponse) => any;
|
|
1022
|
-
}
|
|
1023
790
|
export interface DescribeRuleGroupMetadataRequest {
|
|
1024
791
|
|
|
1025
792
|
RuleGroupName?: string;
|
|
@@ -1028,10 +795,6 @@ export interface DescribeRuleGroupMetadataRequest {
|
|
|
1028
795
|
|
|
1029
796
|
Type?: RuleGroupType | string;
|
|
1030
797
|
}
|
|
1031
|
-
export declare namespace DescribeRuleGroupMetadataRequest {
|
|
1032
|
-
|
|
1033
|
-
const filterSensitiveLog: (obj: DescribeRuleGroupMetadataRequest) => any;
|
|
1034
|
-
}
|
|
1035
798
|
export interface DescribeRuleGroupMetadataResponse {
|
|
1036
799
|
|
|
1037
800
|
RuleGroupArn: string | undefined;
|
|
@@ -1048,10 +811,6 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
1048
811
|
|
|
1049
812
|
LastModifiedTime?: Date;
|
|
1050
813
|
}
|
|
1051
|
-
export declare namespace DescribeRuleGroupMetadataResponse {
|
|
1052
|
-
|
|
1053
|
-
const filterSensitiveLog: (obj: DescribeRuleGroupMetadataResponse) => any;
|
|
1054
|
-
}
|
|
1055
814
|
export interface DisassociateSubnetsRequest {
|
|
1056
815
|
|
|
1057
816
|
UpdateToken?: string;
|
|
@@ -1062,10 +821,6 @@ export interface DisassociateSubnetsRequest {
|
|
|
1062
821
|
|
|
1063
822
|
SubnetIds: string[] | undefined;
|
|
1064
823
|
}
|
|
1065
|
-
export declare namespace DisassociateSubnetsRequest {
|
|
1066
|
-
|
|
1067
|
-
const filterSensitiveLog: (obj: DisassociateSubnetsRequest) => any;
|
|
1068
|
-
}
|
|
1069
824
|
export interface DisassociateSubnetsResponse {
|
|
1070
825
|
|
|
1071
826
|
FirewallArn?: string;
|
|
@@ -1076,10 +831,6 @@ export interface DisassociateSubnetsResponse {
|
|
|
1076
831
|
|
|
1077
832
|
UpdateToken?: string;
|
|
1078
833
|
}
|
|
1079
|
-
export declare namespace DisassociateSubnetsResponse {
|
|
1080
|
-
|
|
1081
|
-
const filterSensitiveLog: (obj: DisassociateSubnetsResponse) => any;
|
|
1082
|
-
}
|
|
1083
834
|
|
|
1084
835
|
export interface FirewallMetadata {
|
|
1085
836
|
|
|
@@ -1087,10 +838,6 @@ export interface FirewallMetadata {
|
|
|
1087
838
|
|
|
1088
839
|
FirewallArn?: string;
|
|
1089
840
|
}
|
|
1090
|
-
export declare namespace FirewallMetadata {
|
|
1091
|
-
|
|
1092
|
-
const filterSensitiveLog: (obj: FirewallMetadata) => any;
|
|
1093
|
-
}
|
|
1094
841
|
|
|
1095
842
|
export interface FirewallPolicyMetadata {
|
|
1096
843
|
|
|
@@ -1098,30 +845,18 @@ export interface FirewallPolicyMetadata {
|
|
|
1098
845
|
|
|
1099
846
|
Arn?: string;
|
|
1100
847
|
}
|
|
1101
|
-
export declare namespace FirewallPolicyMetadata {
|
|
1102
|
-
|
|
1103
|
-
const filterSensitiveLog: (obj: FirewallPolicyMetadata) => any;
|
|
1104
|
-
}
|
|
1105
848
|
export interface ListFirewallPoliciesRequest {
|
|
1106
849
|
|
|
1107
850
|
NextToken?: string;
|
|
1108
851
|
|
|
1109
852
|
MaxResults?: number;
|
|
1110
853
|
}
|
|
1111
|
-
export declare namespace ListFirewallPoliciesRequest {
|
|
1112
|
-
|
|
1113
|
-
const filterSensitiveLog: (obj: ListFirewallPoliciesRequest) => any;
|
|
1114
|
-
}
|
|
1115
854
|
export interface ListFirewallPoliciesResponse {
|
|
1116
855
|
|
|
1117
856
|
NextToken?: string;
|
|
1118
857
|
|
|
1119
858
|
FirewallPolicies?: FirewallPolicyMetadata[];
|
|
1120
859
|
}
|
|
1121
|
-
export declare namespace ListFirewallPoliciesResponse {
|
|
1122
|
-
|
|
1123
|
-
const filterSensitiveLog: (obj: ListFirewallPoliciesResponse) => any;
|
|
1124
|
-
}
|
|
1125
860
|
export interface ListFirewallsRequest {
|
|
1126
861
|
|
|
1127
862
|
NextToken?: string;
|
|
@@ -1130,20 +865,12 @@ export interface ListFirewallsRequest {
|
|
|
1130
865
|
|
|
1131
866
|
MaxResults?: number;
|
|
1132
867
|
}
|
|
1133
|
-
export declare namespace ListFirewallsRequest {
|
|
1134
|
-
|
|
1135
|
-
const filterSensitiveLog: (obj: ListFirewallsRequest) => any;
|
|
1136
|
-
}
|
|
1137
868
|
export interface ListFirewallsResponse {
|
|
1138
869
|
|
|
1139
870
|
NextToken?: string;
|
|
1140
871
|
|
|
1141
872
|
Firewalls?: FirewallMetadata[];
|
|
1142
873
|
}
|
|
1143
|
-
export declare namespace ListFirewallsResponse {
|
|
1144
|
-
|
|
1145
|
-
const filterSensitiveLog: (obj: ListFirewallsResponse) => any;
|
|
1146
|
-
}
|
|
1147
874
|
export declare enum ResourceManagedType {
|
|
1148
875
|
AWS_MANAGED_DOMAIN_LISTS = "AWS_MANAGED_DOMAIN_LISTS",
|
|
1149
876
|
AWS_MANAGED_THREAT_SIGNATURES = "AWS_MANAGED_THREAT_SIGNATURES"
|
|
@@ -1164,10 +891,6 @@ export interface ListRuleGroupsRequest {
|
|
|
1164
891
|
|
|
1165
892
|
Type?: RuleGroupType | string;
|
|
1166
893
|
}
|
|
1167
|
-
export declare namespace ListRuleGroupsRequest {
|
|
1168
|
-
|
|
1169
|
-
const filterSensitiveLog: (obj: ListRuleGroupsRequest) => any;
|
|
1170
|
-
}
|
|
1171
894
|
|
|
1172
895
|
export interface RuleGroupMetadata {
|
|
1173
896
|
|
|
@@ -1175,20 +898,12 @@ export interface RuleGroupMetadata {
|
|
|
1175
898
|
|
|
1176
899
|
Arn?: string;
|
|
1177
900
|
}
|
|
1178
|
-
export declare namespace RuleGroupMetadata {
|
|
1179
|
-
|
|
1180
|
-
const filterSensitiveLog: (obj: RuleGroupMetadata) => any;
|
|
1181
|
-
}
|
|
1182
901
|
export interface ListRuleGroupsResponse {
|
|
1183
902
|
|
|
1184
903
|
NextToken?: string;
|
|
1185
904
|
|
|
1186
905
|
RuleGroups?: RuleGroupMetadata[];
|
|
1187
906
|
}
|
|
1188
|
-
export declare namespace ListRuleGroupsResponse {
|
|
1189
|
-
|
|
1190
|
-
const filterSensitiveLog: (obj: ListRuleGroupsResponse) => any;
|
|
1191
|
-
}
|
|
1192
907
|
export interface ListTagsForResourceRequest {
|
|
1193
908
|
|
|
1194
909
|
NextToken?: string;
|
|
@@ -1197,20 +912,12 @@ export interface ListTagsForResourceRequest {
|
|
|
1197
912
|
|
|
1198
913
|
ResourceArn: string | undefined;
|
|
1199
914
|
}
|
|
1200
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1201
|
-
|
|
1202
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1203
|
-
}
|
|
1204
915
|
export interface ListTagsForResourceResponse {
|
|
1205
916
|
|
|
1206
917
|
NextToken?: string;
|
|
1207
918
|
|
|
1208
919
|
Tags?: Tag[];
|
|
1209
920
|
}
|
|
1210
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1211
|
-
|
|
1212
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1213
|
-
}
|
|
1214
921
|
|
|
1215
922
|
export declare class LogDestinationPermissionException extends __BaseException {
|
|
1216
923
|
readonly name: "LogDestinationPermissionException";
|
|
@@ -1225,48 +932,24 @@ export interface PutResourcePolicyRequest {
|
|
|
1225
932
|
|
|
1226
933
|
Policy: string | undefined;
|
|
1227
934
|
}
|
|
1228
|
-
export declare namespace PutResourcePolicyRequest {
|
|
1229
|
-
|
|
1230
|
-
const filterSensitiveLog: (obj: PutResourcePolicyRequest) => any;
|
|
1231
|
-
}
|
|
1232
935
|
export interface PutResourcePolicyResponse {
|
|
1233
936
|
}
|
|
1234
|
-
export declare namespace PutResourcePolicyResponse {
|
|
1235
|
-
|
|
1236
|
-
const filterSensitiveLog: (obj: PutResourcePolicyResponse) => any;
|
|
1237
|
-
}
|
|
1238
937
|
export interface TagResourceRequest {
|
|
1239
938
|
|
|
1240
939
|
ResourceArn: string | undefined;
|
|
1241
940
|
|
|
1242
941
|
Tags: Tag[] | undefined;
|
|
1243
942
|
}
|
|
1244
|
-
export declare namespace TagResourceRequest {
|
|
1245
|
-
|
|
1246
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1247
|
-
}
|
|
1248
943
|
export interface TagResourceResponse {
|
|
1249
944
|
}
|
|
1250
|
-
export declare namespace TagResourceResponse {
|
|
1251
|
-
|
|
1252
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1253
|
-
}
|
|
1254
945
|
export interface UntagResourceRequest {
|
|
1255
946
|
|
|
1256
947
|
ResourceArn: string | undefined;
|
|
1257
948
|
|
|
1258
949
|
TagKeys: string[] | undefined;
|
|
1259
950
|
}
|
|
1260
|
-
export declare namespace UntagResourceRequest {
|
|
1261
|
-
|
|
1262
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1263
|
-
}
|
|
1264
951
|
export interface UntagResourceResponse {
|
|
1265
952
|
}
|
|
1266
|
-
export declare namespace UntagResourceResponse {
|
|
1267
|
-
|
|
1268
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1269
|
-
}
|
|
1270
953
|
|
|
1271
954
|
export declare class ResourceOwnerCheckException extends __BaseException {
|
|
1272
955
|
readonly name: "ResourceOwnerCheckException";
|
|
@@ -1285,10 +968,6 @@ export interface UpdateFirewallDeleteProtectionRequest {
|
|
|
1285
968
|
|
|
1286
969
|
DeleteProtection: boolean | undefined;
|
|
1287
970
|
}
|
|
1288
|
-
export declare namespace UpdateFirewallDeleteProtectionRequest {
|
|
1289
|
-
|
|
1290
|
-
const filterSensitiveLog: (obj: UpdateFirewallDeleteProtectionRequest) => any;
|
|
1291
|
-
}
|
|
1292
971
|
export interface UpdateFirewallDeleteProtectionResponse {
|
|
1293
972
|
|
|
1294
973
|
FirewallArn?: string;
|
|
@@ -1299,10 +978,6 @@ export interface UpdateFirewallDeleteProtectionResponse {
|
|
|
1299
978
|
|
|
1300
979
|
UpdateToken?: string;
|
|
1301
980
|
}
|
|
1302
|
-
export declare namespace UpdateFirewallDeleteProtectionResponse {
|
|
1303
|
-
|
|
1304
|
-
const filterSensitiveLog: (obj: UpdateFirewallDeleteProtectionResponse) => any;
|
|
1305
|
-
}
|
|
1306
981
|
export interface UpdateFirewallDescriptionRequest {
|
|
1307
982
|
|
|
1308
983
|
UpdateToken?: string;
|
|
@@ -1313,10 +988,6 @@ export interface UpdateFirewallDescriptionRequest {
|
|
|
1313
988
|
|
|
1314
989
|
Description?: string;
|
|
1315
990
|
}
|
|
1316
|
-
export declare namespace UpdateFirewallDescriptionRequest {
|
|
1317
|
-
|
|
1318
|
-
const filterSensitiveLog: (obj: UpdateFirewallDescriptionRequest) => any;
|
|
1319
|
-
}
|
|
1320
991
|
export interface UpdateFirewallDescriptionResponse {
|
|
1321
992
|
|
|
1322
993
|
FirewallArn?: string;
|
|
@@ -1327,10 +998,6 @@ export interface UpdateFirewallDescriptionResponse {
|
|
|
1327
998
|
|
|
1328
999
|
UpdateToken?: string;
|
|
1329
1000
|
}
|
|
1330
|
-
export declare namespace UpdateFirewallDescriptionResponse {
|
|
1331
|
-
|
|
1332
|
-
const filterSensitiveLog: (obj: UpdateFirewallDescriptionResponse) => any;
|
|
1333
|
-
}
|
|
1334
1001
|
export interface UpdateFirewallEncryptionConfigurationRequest {
|
|
1335
1002
|
|
|
1336
1003
|
UpdateToken?: string;
|
|
@@ -1341,10 +1008,6 @@ export interface UpdateFirewallEncryptionConfigurationRequest {
|
|
|
1341
1008
|
|
|
1342
1009
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1343
1010
|
}
|
|
1344
|
-
export declare namespace UpdateFirewallEncryptionConfigurationRequest {
|
|
1345
|
-
|
|
1346
|
-
const filterSensitiveLog: (obj: UpdateFirewallEncryptionConfigurationRequest) => any;
|
|
1347
|
-
}
|
|
1348
1011
|
export interface UpdateFirewallEncryptionConfigurationResponse {
|
|
1349
1012
|
|
|
1350
1013
|
FirewallArn?: string;
|
|
@@ -1355,10 +1018,6 @@ export interface UpdateFirewallEncryptionConfigurationResponse {
|
|
|
1355
1018
|
|
|
1356
1019
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1357
1020
|
}
|
|
1358
|
-
export declare namespace UpdateFirewallEncryptionConfigurationResponse {
|
|
1359
|
-
|
|
1360
|
-
const filterSensitiveLog: (obj: UpdateFirewallEncryptionConfigurationResponse) => any;
|
|
1361
|
-
}
|
|
1362
1021
|
export interface UpdateFirewallPolicyRequest {
|
|
1363
1022
|
|
|
1364
1023
|
UpdateToken: string | undefined;
|
|
@@ -1375,20 +1034,12 @@ export interface UpdateFirewallPolicyRequest {
|
|
|
1375
1034
|
|
|
1376
1035
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1377
1036
|
}
|
|
1378
|
-
export declare namespace UpdateFirewallPolicyRequest {
|
|
1379
|
-
|
|
1380
|
-
const filterSensitiveLog: (obj: UpdateFirewallPolicyRequest) => any;
|
|
1381
|
-
}
|
|
1382
1037
|
export interface UpdateFirewallPolicyResponse {
|
|
1383
1038
|
|
|
1384
1039
|
UpdateToken: string | undefined;
|
|
1385
1040
|
|
|
1386
1041
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
1387
1042
|
}
|
|
1388
|
-
export declare namespace UpdateFirewallPolicyResponse {
|
|
1389
|
-
|
|
1390
|
-
const filterSensitiveLog: (obj: UpdateFirewallPolicyResponse) => any;
|
|
1391
|
-
}
|
|
1392
1043
|
export interface UpdateFirewallPolicyChangeProtectionRequest {
|
|
1393
1044
|
|
|
1394
1045
|
UpdateToken?: string;
|
|
@@ -1399,10 +1050,6 @@ export interface UpdateFirewallPolicyChangeProtectionRequest {
|
|
|
1399
1050
|
|
|
1400
1051
|
FirewallPolicyChangeProtection: boolean | undefined;
|
|
1401
1052
|
}
|
|
1402
|
-
export declare namespace UpdateFirewallPolicyChangeProtectionRequest {
|
|
1403
|
-
|
|
1404
|
-
const filterSensitiveLog: (obj: UpdateFirewallPolicyChangeProtectionRequest) => any;
|
|
1405
|
-
}
|
|
1406
1053
|
export interface UpdateFirewallPolicyChangeProtectionResponse {
|
|
1407
1054
|
|
|
1408
1055
|
UpdateToken?: string;
|
|
@@ -1413,10 +1060,6 @@ export interface UpdateFirewallPolicyChangeProtectionResponse {
|
|
|
1413
1060
|
|
|
1414
1061
|
FirewallPolicyChangeProtection?: boolean;
|
|
1415
1062
|
}
|
|
1416
|
-
export declare namespace UpdateFirewallPolicyChangeProtectionResponse {
|
|
1417
|
-
|
|
1418
|
-
const filterSensitiveLog: (obj: UpdateFirewallPolicyChangeProtectionResponse) => any;
|
|
1419
|
-
}
|
|
1420
1063
|
export interface UpdateLoggingConfigurationRequest {
|
|
1421
1064
|
|
|
1422
1065
|
FirewallArn?: string;
|
|
@@ -1425,10 +1068,6 @@ export interface UpdateLoggingConfigurationRequest {
|
|
|
1425
1068
|
|
|
1426
1069
|
LoggingConfiguration?: LoggingConfiguration;
|
|
1427
1070
|
}
|
|
1428
|
-
export declare namespace UpdateLoggingConfigurationRequest {
|
|
1429
|
-
|
|
1430
|
-
const filterSensitiveLog: (obj: UpdateLoggingConfigurationRequest) => any;
|
|
1431
|
-
}
|
|
1432
1071
|
export interface UpdateLoggingConfigurationResponse {
|
|
1433
1072
|
|
|
1434
1073
|
FirewallArn?: string;
|
|
@@ -1437,10 +1076,6 @@ export interface UpdateLoggingConfigurationResponse {
|
|
|
1437
1076
|
|
|
1438
1077
|
LoggingConfiguration?: LoggingConfiguration;
|
|
1439
1078
|
}
|
|
1440
|
-
export declare namespace UpdateLoggingConfigurationResponse {
|
|
1441
|
-
|
|
1442
|
-
const filterSensitiveLog: (obj: UpdateLoggingConfigurationResponse) => any;
|
|
1443
|
-
}
|
|
1444
1079
|
export interface UpdateRuleGroupRequest {
|
|
1445
1080
|
|
|
1446
1081
|
UpdateToken: string | undefined;
|
|
@@ -1463,20 +1098,12 @@ export interface UpdateRuleGroupRequest {
|
|
|
1463
1098
|
|
|
1464
1099
|
SourceMetadata?: SourceMetadata;
|
|
1465
1100
|
}
|
|
1466
|
-
export declare namespace UpdateRuleGroupRequest {
|
|
1467
|
-
|
|
1468
|
-
const filterSensitiveLog: (obj: UpdateRuleGroupRequest) => any;
|
|
1469
|
-
}
|
|
1470
1101
|
export interface UpdateRuleGroupResponse {
|
|
1471
1102
|
|
|
1472
1103
|
UpdateToken: string | undefined;
|
|
1473
1104
|
|
|
1474
1105
|
RuleGroupResponse: RuleGroupResponse | undefined;
|
|
1475
1106
|
}
|
|
1476
|
-
export declare namespace UpdateRuleGroupResponse {
|
|
1477
|
-
|
|
1478
|
-
const filterSensitiveLog: (obj: UpdateRuleGroupResponse) => any;
|
|
1479
|
-
}
|
|
1480
1107
|
export interface UpdateSubnetChangeProtectionRequest {
|
|
1481
1108
|
|
|
1482
1109
|
UpdateToken?: string;
|
|
@@ -1487,10 +1114,6 @@ export interface UpdateSubnetChangeProtectionRequest {
|
|
|
1487
1114
|
|
|
1488
1115
|
SubnetChangeProtection: boolean | undefined;
|
|
1489
1116
|
}
|
|
1490
|
-
export declare namespace UpdateSubnetChangeProtectionRequest {
|
|
1491
|
-
|
|
1492
|
-
const filterSensitiveLog: (obj: UpdateSubnetChangeProtectionRequest) => any;
|
|
1493
|
-
}
|
|
1494
1117
|
export interface UpdateSubnetChangeProtectionResponse {
|
|
1495
1118
|
|
|
1496
1119
|
UpdateToken?: string;
|
|
@@ -1501,7 +1124,221 @@ export interface UpdateSubnetChangeProtectionResponse {
|
|
|
1501
1124
|
|
|
1502
1125
|
SubnetChangeProtection?: boolean;
|
|
1503
1126
|
}
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1127
|
+
|
|
1128
|
+
export declare const DimensionFilterSensitiveLog: (obj: Dimension) => any;
|
|
1129
|
+
|
|
1130
|
+
export declare const PublishMetricActionFilterSensitiveLog: (obj: PublishMetricAction) => any;
|
|
1131
|
+
|
|
1132
|
+
export declare const ActionDefinitionFilterSensitiveLog: (obj: ActionDefinition) => any;
|
|
1133
|
+
|
|
1134
|
+
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
1135
|
+
|
|
1136
|
+
export declare const AssociateFirewallPolicyRequestFilterSensitiveLog: (obj: AssociateFirewallPolicyRequest) => any;
|
|
1137
|
+
|
|
1138
|
+
export declare const AssociateFirewallPolicyResponseFilterSensitiveLog: (obj: AssociateFirewallPolicyResponse) => any;
|
|
1139
|
+
|
|
1140
|
+
export declare const SubnetMappingFilterSensitiveLog: (obj: SubnetMapping) => any;
|
|
1141
|
+
|
|
1142
|
+
export declare const AssociateSubnetsRequestFilterSensitiveLog: (obj: AssociateSubnetsRequest) => any;
|
|
1143
|
+
|
|
1144
|
+
export declare const AssociateSubnetsResponseFilterSensitiveLog: (obj: AssociateSubnetsResponse) => any;
|
|
1145
|
+
|
|
1146
|
+
export declare const AttachmentFilterSensitiveLog: (obj: Attachment) => any;
|
|
1147
|
+
|
|
1148
|
+
export declare const IPSetMetadataFilterSensitiveLog: (obj: IPSetMetadata) => any;
|
|
1149
|
+
|
|
1150
|
+
export declare const CIDRSummaryFilterSensitiveLog: (obj: CIDRSummary) => any;
|
|
1151
|
+
|
|
1152
|
+
export declare const CapacityUsageSummaryFilterSensitiveLog: (obj: CapacityUsageSummary) => any;
|
|
1153
|
+
|
|
1154
|
+
export declare const EncryptionConfigurationFilterSensitiveLog: (obj: EncryptionConfiguration) => any;
|
|
1155
|
+
|
|
1156
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1157
|
+
|
|
1158
|
+
export declare const CreateFirewallRequestFilterSensitiveLog: (obj: CreateFirewallRequest) => any;
|
|
1159
|
+
|
|
1160
|
+
export declare const FirewallFilterSensitiveLog: (obj: Firewall) => any;
|
|
1161
|
+
|
|
1162
|
+
export declare const PerObjectStatusFilterSensitiveLog: (obj: PerObjectStatus) => any;
|
|
1163
|
+
|
|
1164
|
+
export declare const SyncStateFilterSensitiveLog: (obj: SyncState) => any;
|
|
1165
|
+
|
|
1166
|
+
export declare const FirewallStatusFilterSensitiveLog: (obj: FirewallStatus) => any;
|
|
1167
|
+
|
|
1168
|
+
export declare const CreateFirewallResponseFilterSensitiveLog: (obj: CreateFirewallResponse) => any;
|
|
1169
|
+
|
|
1170
|
+
export declare const StatefulEngineOptionsFilterSensitiveLog: (obj: StatefulEngineOptions) => any;
|
|
1171
|
+
|
|
1172
|
+
export declare const StatefulRuleGroupOverrideFilterSensitiveLog: (obj: StatefulRuleGroupOverride) => any;
|
|
1173
|
+
|
|
1174
|
+
export declare const StatefulRuleGroupReferenceFilterSensitiveLog: (obj: StatefulRuleGroupReference) => any;
|
|
1175
|
+
|
|
1176
|
+
export declare const CustomActionFilterSensitiveLog: (obj: CustomAction) => any;
|
|
1177
|
+
|
|
1178
|
+
export declare const StatelessRuleGroupReferenceFilterSensitiveLog: (obj: StatelessRuleGroupReference) => any;
|
|
1179
|
+
|
|
1180
|
+
export declare const FirewallPolicyFilterSensitiveLog: (obj: FirewallPolicy) => any;
|
|
1181
|
+
|
|
1182
|
+
export declare const CreateFirewallPolicyRequestFilterSensitiveLog: (obj: CreateFirewallPolicyRequest) => any;
|
|
1183
|
+
|
|
1184
|
+
export declare const FirewallPolicyResponseFilterSensitiveLog: (obj: FirewallPolicyResponse) => any;
|
|
1185
|
+
|
|
1186
|
+
export declare const CreateFirewallPolicyResponseFilterSensitiveLog: (obj: CreateFirewallPolicyResponse) => any;
|
|
1187
|
+
|
|
1188
|
+
export declare const IPSetReferenceFilterSensitiveLog: (obj: IPSetReference) => any;
|
|
1189
|
+
|
|
1190
|
+
export declare const ReferenceSetsFilterSensitiveLog: (obj: ReferenceSets) => any;
|
|
1191
|
+
|
|
1192
|
+
export declare const RulesSourceListFilterSensitiveLog: (obj: RulesSourceList) => any;
|
|
1193
|
+
|
|
1194
|
+
export declare const HeaderFilterSensitiveLog: (obj: Header) => any;
|
|
1195
|
+
|
|
1196
|
+
export declare const RuleOptionFilterSensitiveLog: (obj: RuleOption) => any;
|
|
1197
|
+
|
|
1198
|
+
export declare const StatefulRuleFilterSensitiveLog: (obj: StatefulRule) => any;
|
|
1199
|
+
|
|
1200
|
+
export declare const PortRangeFilterSensitiveLog: (obj: PortRange) => any;
|
|
1201
|
+
|
|
1202
|
+
export declare const TCPFlagFieldFilterSensitiveLog: (obj: TCPFlagField) => any;
|
|
1203
|
+
|
|
1204
|
+
export declare const MatchAttributesFilterSensitiveLog: (obj: MatchAttributes) => any;
|
|
1205
|
+
|
|
1206
|
+
export declare const RuleDefinitionFilterSensitiveLog: (obj: RuleDefinition) => any;
|
|
1207
|
+
|
|
1208
|
+
export declare const StatelessRuleFilterSensitiveLog: (obj: StatelessRule) => any;
|
|
1209
|
+
|
|
1210
|
+
export declare const StatelessRulesAndCustomActionsFilterSensitiveLog: (obj: StatelessRulesAndCustomActions) => any;
|
|
1211
|
+
|
|
1212
|
+
export declare const RulesSourceFilterSensitiveLog: (obj: RulesSource) => any;
|
|
1213
|
+
|
|
1214
|
+
export declare const IPSetFilterSensitiveLog: (obj: IPSet) => any;
|
|
1215
|
+
|
|
1216
|
+
export declare const PortSetFilterSensitiveLog: (obj: PortSet) => any;
|
|
1217
|
+
|
|
1218
|
+
export declare const RuleVariablesFilterSensitiveLog: (obj: RuleVariables) => any;
|
|
1219
|
+
|
|
1220
|
+
export declare const StatefulRuleOptionsFilterSensitiveLog: (obj: StatefulRuleOptions) => any;
|
|
1221
|
+
|
|
1222
|
+
export declare const RuleGroupFilterSensitiveLog: (obj: RuleGroup) => any;
|
|
1223
|
+
|
|
1224
|
+
export declare const SourceMetadataFilterSensitiveLog: (obj: SourceMetadata) => any;
|
|
1225
|
+
|
|
1226
|
+
export declare const CreateRuleGroupRequestFilterSensitiveLog: (obj: CreateRuleGroupRequest) => any;
|
|
1227
|
+
|
|
1228
|
+
export declare const RuleGroupResponseFilterSensitiveLog: (obj: RuleGroupResponse) => any;
|
|
1229
|
+
|
|
1230
|
+
export declare const CreateRuleGroupResponseFilterSensitiveLog: (obj: CreateRuleGroupResponse) => any;
|
|
1231
|
+
|
|
1232
|
+
export declare const DeleteFirewallRequestFilterSensitiveLog: (obj: DeleteFirewallRequest) => any;
|
|
1233
|
+
|
|
1234
|
+
export declare const DeleteFirewallResponseFilterSensitiveLog: (obj: DeleteFirewallResponse) => any;
|
|
1235
|
+
|
|
1236
|
+
export declare const DeleteFirewallPolicyRequestFilterSensitiveLog: (obj: DeleteFirewallPolicyRequest) => any;
|
|
1237
|
+
|
|
1238
|
+
export declare const DeleteFirewallPolicyResponseFilterSensitiveLog: (obj: DeleteFirewallPolicyResponse) => any;
|
|
1239
|
+
|
|
1240
|
+
export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (obj: DeleteResourcePolicyRequest) => any;
|
|
1241
|
+
|
|
1242
|
+
export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (obj: DeleteResourcePolicyResponse) => any;
|
|
1243
|
+
|
|
1244
|
+
export declare const DeleteRuleGroupRequestFilterSensitiveLog: (obj: DeleteRuleGroupRequest) => any;
|
|
1245
|
+
|
|
1246
|
+
export declare const DeleteRuleGroupResponseFilterSensitiveLog: (obj: DeleteRuleGroupResponse) => any;
|
|
1247
|
+
|
|
1248
|
+
export declare const DescribeFirewallRequestFilterSensitiveLog: (obj: DescribeFirewallRequest) => any;
|
|
1249
|
+
|
|
1250
|
+
export declare const DescribeFirewallResponseFilterSensitiveLog: (obj: DescribeFirewallResponse) => any;
|
|
1251
|
+
|
|
1252
|
+
export declare const DescribeFirewallPolicyRequestFilterSensitiveLog: (obj: DescribeFirewallPolicyRequest) => any;
|
|
1253
|
+
|
|
1254
|
+
export declare const DescribeFirewallPolicyResponseFilterSensitiveLog: (obj: DescribeFirewallPolicyResponse) => any;
|
|
1255
|
+
|
|
1256
|
+
export declare const DescribeLoggingConfigurationRequestFilterSensitiveLog: (obj: DescribeLoggingConfigurationRequest) => any;
|
|
1257
|
+
|
|
1258
|
+
export declare const LogDestinationConfigFilterSensitiveLog: (obj: LogDestinationConfig) => any;
|
|
1259
|
+
|
|
1260
|
+
export declare const LoggingConfigurationFilterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
1261
|
+
|
|
1262
|
+
export declare const DescribeLoggingConfigurationResponseFilterSensitiveLog: (obj: DescribeLoggingConfigurationResponse) => any;
|
|
1263
|
+
|
|
1264
|
+
export declare const DescribeResourcePolicyRequestFilterSensitiveLog: (obj: DescribeResourcePolicyRequest) => any;
|
|
1265
|
+
|
|
1266
|
+
export declare const DescribeResourcePolicyResponseFilterSensitiveLog: (obj: DescribeResourcePolicyResponse) => any;
|
|
1267
|
+
|
|
1268
|
+
export declare const DescribeRuleGroupRequestFilterSensitiveLog: (obj: DescribeRuleGroupRequest) => any;
|
|
1269
|
+
|
|
1270
|
+
export declare const DescribeRuleGroupResponseFilterSensitiveLog: (obj: DescribeRuleGroupResponse) => any;
|
|
1271
|
+
|
|
1272
|
+
export declare const DescribeRuleGroupMetadataRequestFilterSensitiveLog: (obj: DescribeRuleGroupMetadataRequest) => any;
|
|
1273
|
+
|
|
1274
|
+
export declare const DescribeRuleGroupMetadataResponseFilterSensitiveLog: (obj: DescribeRuleGroupMetadataResponse) => any;
|
|
1275
|
+
|
|
1276
|
+
export declare const DisassociateSubnetsRequestFilterSensitiveLog: (obj: DisassociateSubnetsRequest) => any;
|
|
1277
|
+
|
|
1278
|
+
export declare const DisassociateSubnetsResponseFilterSensitiveLog: (obj: DisassociateSubnetsResponse) => any;
|
|
1279
|
+
|
|
1280
|
+
export declare const FirewallMetadataFilterSensitiveLog: (obj: FirewallMetadata) => any;
|
|
1281
|
+
|
|
1282
|
+
export declare const FirewallPolicyMetadataFilterSensitiveLog: (obj: FirewallPolicyMetadata) => any;
|
|
1283
|
+
|
|
1284
|
+
export declare const ListFirewallPoliciesRequestFilterSensitiveLog: (obj: ListFirewallPoliciesRequest) => any;
|
|
1285
|
+
|
|
1286
|
+
export declare const ListFirewallPoliciesResponseFilterSensitiveLog: (obj: ListFirewallPoliciesResponse) => any;
|
|
1287
|
+
|
|
1288
|
+
export declare const ListFirewallsRequestFilterSensitiveLog: (obj: ListFirewallsRequest) => any;
|
|
1289
|
+
|
|
1290
|
+
export declare const ListFirewallsResponseFilterSensitiveLog: (obj: ListFirewallsResponse) => any;
|
|
1291
|
+
|
|
1292
|
+
export declare const ListRuleGroupsRequestFilterSensitiveLog: (obj: ListRuleGroupsRequest) => any;
|
|
1293
|
+
|
|
1294
|
+
export declare const RuleGroupMetadataFilterSensitiveLog: (obj: RuleGroupMetadata) => any;
|
|
1295
|
+
|
|
1296
|
+
export declare const ListRuleGroupsResponseFilterSensitiveLog: (obj: ListRuleGroupsResponse) => any;
|
|
1297
|
+
|
|
1298
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1299
|
+
|
|
1300
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1301
|
+
|
|
1302
|
+
export declare const PutResourcePolicyRequestFilterSensitiveLog: (obj: PutResourcePolicyRequest) => any;
|
|
1303
|
+
|
|
1304
|
+
export declare const PutResourcePolicyResponseFilterSensitiveLog: (obj: PutResourcePolicyResponse) => any;
|
|
1305
|
+
|
|
1306
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1307
|
+
|
|
1308
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1309
|
+
|
|
1310
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1311
|
+
|
|
1312
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1313
|
+
|
|
1314
|
+
export declare const UpdateFirewallDeleteProtectionRequestFilterSensitiveLog: (obj: UpdateFirewallDeleteProtectionRequest) => any;
|
|
1315
|
+
|
|
1316
|
+
export declare const UpdateFirewallDeleteProtectionResponseFilterSensitiveLog: (obj: UpdateFirewallDeleteProtectionResponse) => any;
|
|
1317
|
+
|
|
1318
|
+
export declare const UpdateFirewallDescriptionRequestFilterSensitiveLog: (obj: UpdateFirewallDescriptionRequest) => any;
|
|
1319
|
+
|
|
1320
|
+
export declare const UpdateFirewallDescriptionResponseFilterSensitiveLog: (obj: UpdateFirewallDescriptionResponse) => any;
|
|
1321
|
+
|
|
1322
|
+
export declare const UpdateFirewallEncryptionConfigurationRequestFilterSensitiveLog: (obj: UpdateFirewallEncryptionConfigurationRequest) => any;
|
|
1323
|
+
|
|
1324
|
+
export declare const UpdateFirewallEncryptionConfigurationResponseFilterSensitiveLog: (obj: UpdateFirewallEncryptionConfigurationResponse) => any;
|
|
1325
|
+
|
|
1326
|
+
export declare const UpdateFirewallPolicyRequestFilterSensitiveLog: (obj: UpdateFirewallPolicyRequest) => any;
|
|
1327
|
+
|
|
1328
|
+
export declare const UpdateFirewallPolicyResponseFilterSensitiveLog: (obj: UpdateFirewallPolicyResponse) => any;
|
|
1329
|
+
|
|
1330
|
+
export declare const UpdateFirewallPolicyChangeProtectionRequestFilterSensitiveLog: (obj: UpdateFirewallPolicyChangeProtectionRequest) => any;
|
|
1331
|
+
|
|
1332
|
+
export declare const UpdateFirewallPolicyChangeProtectionResponseFilterSensitiveLog: (obj: UpdateFirewallPolicyChangeProtectionResponse) => any;
|
|
1333
|
+
|
|
1334
|
+
export declare const UpdateLoggingConfigurationRequestFilterSensitiveLog: (obj: UpdateLoggingConfigurationRequest) => any;
|
|
1335
|
+
|
|
1336
|
+
export declare const UpdateLoggingConfigurationResponseFilterSensitiveLog: (obj: UpdateLoggingConfigurationResponse) => any;
|
|
1337
|
+
|
|
1338
|
+
export declare const UpdateRuleGroupRequestFilterSensitiveLog: (obj: UpdateRuleGroupRequest) => any;
|
|
1339
|
+
|
|
1340
|
+
export declare const UpdateRuleGroupResponseFilterSensitiveLog: (obj: UpdateRuleGroupResponse) => any;
|
|
1341
|
+
|
|
1342
|
+
export declare const UpdateSubnetChangeProtectionRequestFilterSensitiveLog: (obj: UpdateSubnetChangeProtectionRequest) => any;
|
|
1343
|
+
|
|
1344
|
+
export declare const UpdateSubnetChangeProtectionResponseFilterSensitiveLog: (obj: UpdateSubnetChangeProtectionResponse) => any;
|