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