@aws-sdk/client-fms 3.131.0 → 3.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/commands/AssociateAdminAccountCommand.js +1 -1
- package/dist-cjs/commands/AssociateThirdPartyFirewallCommand.js +2 -2
- package/dist-cjs/commands/DeleteAppsListCommand.js +1 -1
- package/dist-cjs/commands/DeleteNotificationChannelCommand.js +1 -1
- package/dist-cjs/commands/DeletePolicyCommand.js +1 -1
- package/dist-cjs/commands/DeleteProtocolsListCommand.js +1 -1
- package/dist-cjs/commands/DisassociateAdminAccountCommand.js +1 -1
- package/dist-cjs/commands/DisassociateThirdPartyFirewallCommand.js +2 -2
- package/dist-cjs/commands/GetAdminAccountCommand.js +2 -2
- package/dist-cjs/commands/GetAppsListCommand.js +2 -2
- package/dist-cjs/commands/GetComplianceDetailCommand.js +2 -2
- package/dist-cjs/commands/GetNotificationChannelCommand.js +2 -2
- package/dist-cjs/commands/GetPolicyCommand.js +2 -2
- package/dist-cjs/commands/GetProtectionStatusCommand.js +2 -2
- package/dist-cjs/commands/GetProtocolsListCommand.js +2 -2
- package/dist-cjs/commands/GetThirdPartyFirewallAssociationStatusCommand.js +2 -2
- package/dist-cjs/commands/GetViolationDetailsCommand.js +2 -2
- package/dist-cjs/commands/ListAppsListsCommand.js +2 -2
- package/dist-cjs/commands/ListComplianceStatusCommand.js +2 -2
- package/dist-cjs/commands/ListMemberAccountsCommand.js +2 -2
- package/dist-cjs/commands/ListPoliciesCommand.js +2 -2
- package/dist-cjs/commands/ListProtocolsListsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListThirdPartyFirewallFirewallPoliciesCommand.js +2 -2
- package/dist-cjs/commands/PutAppsListCommand.js +2 -2
- package/dist-cjs/commands/PutNotificationChannelCommand.js +1 -1
- package/dist-cjs/commands/PutPolicyCommand.js +2 -2
- package/dist-cjs/commands/PutProtocolsListCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/models/models_0.js +471 -705
- package/dist-es/commands/AssociateAdminAccountCommand.js +2 -2
- package/dist-es/commands/AssociateThirdPartyFirewallCommand.js +3 -3
- package/dist-es/commands/DeleteAppsListCommand.js +2 -2
- package/dist-es/commands/DeleteNotificationChannelCommand.js +2 -2
- package/dist-es/commands/DeletePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteProtocolsListCommand.js +2 -2
- package/dist-es/commands/DisassociateAdminAccountCommand.js +2 -2
- package/dist-es/commands/DisassociateThirdPartyFirewallCommand.js +3 -3
- package/dist-es/commands/GetAdminAccountCommand.js +3 -3
- package/dist-es/commands/GetAppsListCommand.js +3 -3
- package/dist-es/commands/GetComplianceDetailCommand.js +3 -3
- package/dist-es/commands/GetNotificationChannelCommand.js +3 -3
- package/dist-es/commands/GetPolicyCommand.js +3 -3
- package/dist-es/commands/GetProtectionStatusCommand.js +3 -3
- package/dist-es/commands/GetProtocolsListCommand.js +3 -3
- package/dist-es/commands/GetThirdPartyFirewallAssociationStatusCommand.js +3 -3
- package/dist-es/commands/GetViolationDetailsCommand.js +3 -3
- package/dist-es/commands/ListAppsListsCommand.js +3 -3
- package/dist-es/commands/ListComplianceStatusCommand.js +3 -3
- package/dist-es/commands/ListMemberAccountsCommand.js +3 -3
- package/dist-es/commands/ListPoliciesCommand.js +3 -3
- package/dist-es/commands/ListProtocolsListsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListThirdPartyFirewallFirewallPoliciesCommand.js +3 -3
- package/dist-es/commands/PutAppsListCommand.js +3 -3
- package/dist-es/commands/PutNotificationChannelCommand.js +2 -2
- package/dist-es/commands/PutPolicyCommand.js +3 -3
- package/dist-es/commands/PutProtocolsListCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/models/models_0.js +117 -468
- package/dist-types/models/models_0.d.ts +468 -702
- package/dist-types/ts3.4/models/models_0.d.ts +234 -468
- package/package.json +6 -6
|
@@ -14,10 +14,6 @@ export interface ActionTarget {
|
|
|
14
14
|
|
|
15
15
|
Description?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace ActionTarget {
|
|
18
|
-
|
|
19
|
-
const filterSensitiveLog: (obj: ActionTarget) => any;
|
|
20
|
-
}
|
|
21
17
|
|
|
22
18
|
export interface App {
|
|
23
19
|
|
|
@@ -27,10 +23,6 @@ export interface App {
|
|
|
27
23
|
|
|
28
24
|
Port: number | undefined;
|
|
29
25
|
}
|
|
30
|
-
export declare namespace App {
|
|
31
|
-
|
|
32
|
-
const filterSensitiveLog: (obj: App) => any;
|
|
33
|
-
}
|
|
34
26
|
|
|
35
27
|
export interface AppsListData {
|
|
36
28
|
|
|
@@ -48,10 +40,6 @@ export interface AppsListData {
|
|
|
48
40
|
|
|
49
41
|
PreviousAppsList?: Record<string, App[]>;
|
|
50
42
|
}
|
|
51
|
-
export declare namespace AppsListData {
|
|
52
|
-
|
|
53
|
-
const filterSensitiveLog: (obj: AppsListData) => any;
|
|
54
|
-
}
|
|
55
43
|
|
|
56
44
|
export interface AppsListDataSummary {
|
|
57
45
|
|
|
@@ -63,18 +51,10 @@ export interface AppsListDataSummary {
|
|
|
63
51
|
|
|
64
52
|
AppsList?: App[];
|
|
65
53
|
}
|
|
66
|
-
export declare namespace AppsListDataSummary {
|
|
67
|
-
|
|
68
|
-
const filterSensitiveLog: (obj: AppsListDataSummary) => any;
|
|
69
|
-
}
|
|
70
54
|
export interface AssociateAdminAccountRequest {
|
|
71
55
|
|
|
72
56
|
AdminAccount: string | undefined;
|
|
73
57
|
}
|
|
74
|
-
export declare namespace AssociateAdminAccountRequest {
|
|
75
|
-
|
|
76
|
-
const filterSensitiveLog: (obj: AssociateAdminAccountRequest) => any;
|
|
77
|
-
}
|
|
78
58
|
|
|
79
59
|
export declare class InternalErrorException extends __BaseException {
|
|
80
60
|
readonly name: "InternalErrorException";
|
|
@@ -122,10 +102,6 @@ export interface AssociateThirdPartyFirewallRequest {
|
|
|
122
102
|
|
|
123
103
|
ThirdPartyFirewall: ThirdPartyFirewall | string | undefined;
|
|
124
104
|
}
|
|
125
|
-
export declare namespace AssociateThirdPartyFirewallRequest {
|
|
126
|
-
|
|
127
|
-
const filterSensitiveLog: (obj: AssociateThirdPartyFirewallRequest) => any;
|
|
128
|
-
}
|
|
129
105
|
export declare enum ThirdPartyFirewallAssociationStatus {
|
|
130
106
|
NOT_EXIST = "NOT_EXIST",
|
|
131
107
|
OFFBOARDING = "OFFBOARDING",
|
|
@@ -137,10 +113,6 @@ export interface AssociateThirdPartyFirewallResponse {
|
|
|
137
113
|
|
|
138
114
|
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | string;
|
|
139
115
|
}
|
|
140
|
-
export declare namespace AssociateThirdPartyFirewallResponse {
|
|
141
|
-
|
|
142
|
-
const filterSensitiveLog: (obj: AssociateThirdPartyFirewallResponse) => any;
|
|
143
|
-
}
|
|
144
116
|
|
|
145
117
|
export interface AwsEc2NetworkInterfaceViolation {
|
|
146
118
|
|
|
@@ -148,10 +120,6 @@ export interface AwsEc2NetworkInterfaceViolation {
|
|
|
148
120
|
|
|
149
121
|
ViolatingSecurityGroups?: string[];
|
|
150
122
|
}
|
|
151
|
-
export declare namespace AwsEc2NetworkInterfaceViolation {
|
|
152
|
-
|
|
153
|
-
const filterSensitiveLog: (obj: AwsEc2NetworkInterfaceViolation) => any;
|
|
154
|
-
}
|
|
155
123
|
|
|
156
124
|
export interface AwsEc2InstanceViolation {
|
|
157
125
|
|
|
@@ -159,110 +127,58 @@ export interface AwsEc2InstanceViolation {
|
|
|
159
127
|
|
|
160
128
|
AwsEc2NetworkInterfaceViolations?: AwsEc2NetworkInterfaceViolation[];
|
|
161
129
|
}
|
|
162
|
-
export declare namespace AwsEc2InstanceViolation {
|
|
163
|
-
|
|
164
|
-
const filterSensitiveLog: (obj: AwsEc2InstanceViolation) => any;
|
|
165
|
-
}
|
|
166
130
|
export interface DeleteAppsListRequest {
|
|
167
131
|
|
|
168
132
|
ListId: string | undefined;
|
|
169
133
|
}
|
|
170
|
-
export declare namespace DeleteAppsListRequest {
|
|
171
|
-
|
|
172
|
-
const filterSensitiveLog: (obj: DeleteAppsListRequest) => any;
|
|
173
|
-
}
|
|
174
134
|
export interface DeleteNotificationChannelRequest {
|
|
175
135
|
}
|
|
176
|
-
export declare namespace DeleteNotificationChannelRequest {
|
|
177
|
-
|
|
178
|
-
const filterSensitiveLog: (obj: DeleteNotificationChannelRequest) => any;
|
|
179
|
-
}
|
|
180
136
|
export interface DeletePolicyRequest {
|
|
181
137
|
|
|
182
138
|
PolicyId: string | undefined;
|
|
183
139
|
|
|
184
140
|
DeleteAllPolicyResources?: boolean;
|
|
185
141
|
}
|
|
186
|
-
export declare namespace DeletePolicyRequest {
|
|
187
|
-
|
|
188
|
-
const filterSensitiveLog: (obj: DeletePolicyRequest) => any;
|
|
189
|
-
}
|
|
190
142
|
export interface DeleteProtocolsListRequest {
|
|
191
143
|
|
|
192
144
|
ListId: string | undefined;
|
|
193
145
|
}
|
|
194
|
-
export declare namespace DeleteProtocolsListRequest {
|
|
195
|
-
|
|
196
|
-
const filterSensitiveLog: (obj: DeleteProtocolsListRequest) => any;
|
|
197
|
-
}
|
|
198
146
|
export interface DisassociateAdminAccountRequest {
|
|
199
147
|
}
|
|
200
|
-
export declare namespace DisassociateAdminAccountRequest {
|
|
201
|
-
|
|
202
|
-
const filterSensitiveLog: (obj: DisassociateAdminAccountRequest) => any;
|
|
203
|
-
}
|
|
204
148
|
export interface DisassociateThirdPartyFirewallRequest {
|
|
205
149
|
|
|
206
150
|
ThirdPartyFirewall: ThirdPartyFirewall | string | undefined;
|
|
207
151
|
}
|
|
208
|
-
export declare namespace DisassociateThirdPartyFirewallRequest {
|
|
209
|
-
|
|
210
|
-
const filterSensitiveLog: (obj: DisassociateThirdPartyFirewallRequest) => any;
|
|
211
|
-
}
|
|
212
152
|
export interface DisassociateThirdPartyFirewallResponse {
|
|
213
153
|
|
|
214
154
|
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | string;
|
|
215
155
|
}
|
|
216
|
-
export declare namespace DisassociateThirdPartyFirewallResponse {
|
|
217
|
-
|
|
218
|
-
const filterSensitiveLog: (obj: DisassociateThirdPartyFirewallResponse) => any;
|
|
219
|
-
}
|
|
220
156
|
export interface GetAdminAccountRequest {
|
|
221
157
|
}
|
|
222
|
-
export declare namespace GetAdminAccountRequest {
|
|
223
|
-
|
|
224
|
-
const filterSensitiveLog: (obj: GetAdminAccountRequest) => any;
|
|
225
|
-
}
|
|
226
158
|
export interface GetAdminAccountResponse {
|
|
227
159
|
|
|
228
160
|
AdminAccount?: string;
|
|
229
161
|
|
|
230
162
|
RoleStatus?: AccountRoleStatus | string;
|
|
231
163
|
}
|
|
232
|
-
export declare namespace GetAdminAccountResponse {
|
|
233
|
-
|
|
234
|
-
const filterSensitiveLog: (obj: GetAdminAccountResponse) => any;
|
|
235
|
-
}
|
|
236
164
|
export interface GetAppsListRequest {
|
|
237
165
|
|
|
238
166
|
ListId: string | undefined;
|
|
239
167
|
|
|
240
168
|
DefaultList?: boolean;
|
|
241
169
|
}
|
|
242
|
-
export declare namespace GetAppsListRequest {
|
|
243
|
-
|
|
244
|
-
const filterSensitiveLog: (obj: GetAppsListRequest) => any;
|
|
245
|
-
}
|
|
246
170
|
export interface GetAppsListResponse {
|
|
247
171
|
|
|
248
172
|
AppsList?: AppsListData;
|
|
249
173
|
|
|
250
174
|
AppsListArn?: string;
|
|
251
175
|
}
|
|
252
|
-
export declare namespace GetAppsListResponse {
|
|
253
|
-
|
|
254
|
-
const filterSensitiveLog: (obj: GetAppsListResponse) => any;
|
|
255
|
-
}
|
|
256
176
|
export interface GetComplianceDetailRequest {
|
|
257
177
|
|
|
258
178
|
PolicyId: string | undefined;
|
|
259
179
|
|
|
260
180
|
MemberAccount: string | undefined;
|
|
261
181
|
}
|
|
262
|
-
export declare namespace GetComplianceDetailRequest {
|
|
263
|
-
|
|
264
|
-
const filterSensitiveLog: (obj: GetComplianceDetailRequest) => any;
|
|
265
|
-
}
|
|
266
182
|
export declare enum DependentServiceName {
|
|
267
183
|
AWSConfig = "AWSCONFIG",
|
|
268
184
|
AWSShieldAdvanced = "AWSSHIELD_ADVANCED",
|
|
@@ -310,10 +226,6 @@ export interface ComplianceViolator {
|
|
|
310
226
|
|
|
311
227
|
Metadata?: Record<string, string>;
|
|
312
228
|
}
|
|
313
|
-
export declare namespace ComplianceViolator {
|
|
314
|
-
|
|
315
|
-
const filterSensitiveLog: (obj: ComplianceViolator) => any;
|
|
316
|
-
}
|
|
317
229
|
|
|
318
230
|
export interface PolicyComplianceDetail {
|
|
319
231
|
|
|
@@ -331,42 +243,22 @@ export interface PolicyComplianceDetail {
|
|
|
331
243
|
|
|
332
244
|
IssueInfoMap?: Record<string, string>;
|
|
333
245
|
}
|
|
334
|
-
export declare namespace PolicyComplianceDetail {
|
|
335
|
-
|
|
336
|
-
const filterSensitiveLog: (obj: PolicyComplianceDetail) => any;
|
|
337
|
-
}
|
|
338
246
|
export interface GetComplianceDetailResponse {
|
|
339
247
|
|
|
340
248
|
PolicyComplianceDetail?: PolicyComplianceDetail;
|
|
341
249
|
}
|
|
342
|
-
export declare namespace GetComplianceDetailResponse {
|
|
343
|
-
|
|
344
|
-
const filterSensitiveLog: (obj: GetComplianceDetailResponse) => any;
|
|
345
|
-
}
|
|
346
250
|
export interface GetNotificationChannelRequest {
|
|
347
251
|
}
|
|
348
|
-
export declare namespace GetNotificationChannelRequest {
|
|
349
|
-
|
|
350
|
-
const filterSensitiveLog: (obj: GetNotificationChannelRequest) => any;
|
|
351
|
-
}
|
|
352
252
|
export interface GetNotificationChannelResponse {
|
|
353
253
|
|
|
354
254
|
SnsTopicArn?: string;
|
|
355
255
|
|
|
356
256
|
SnsRoleName?: string;
|
|
357
257
|
}
|
|
358
|
-
export declare namespace GetNotificationChannelResponse {
|
|
359
|
-
|
|
360
|
-
const filterSensitiveLog: (obj: GetNotificationChannelResponse) => any;
|
|
361
|
-
}
|
|
362
258
|
export interface GetPolicyRequest {
|
|
363
259
|
|
|
364
260
|
PolicyId: string | undefined;
|
|
365
261
|
}
|
|
366
|
-
export declare namespace GetPolicyRequest {
|
|
367
|
-
|
|
368
|
-
const filterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
369
|
-
}
|
|
370
262
|
export declare enum CustomerPolicyScopeIdType {
|
|
371
263
|
ACCOUNT = "ACCOUNT",
|
|
372
264
|
ORG_UNIT = "ORG_UNIT"
|
|
@@ -378,10 +270,6 @@ export interface ResourceTag {
|
|
|
378
270
|
|
|
379
271
|
Value?: string;
|
|
380
272
|
}
|
|
381
|
-
export declare namespace ResourceTag {
|
|
382
|
-
|
|
383
|
-
const filterSensitiveLog: (obj: ResourceTag) => any;
|
|
384
|
-
}
|
|
385
273
|
export declare enum FirewallDeploymentModel {
|
|
386
274
|
CENTRALIZED = "CENTRALIZED",
|
|
387
275
|
DISTRIBUTED = "DISTRIBUTED"
|
|
@@ -391,19 +279,11 @@ export interface NetworkFirewallPolicy {
|
|
|
391
279
|
|
|
392
280
|
FirewallDeploymentModel?: FirewallDeploymentModel | string;
|
|
393
281
|
}
|
|
394
|
-
export declare namespace NetworkFirewallPolicy {
|
|
395
|
-
|
|
396
|
-
const filterSensitiveLog: (obj: NetworkFirewallPolicy) => any;
|
|
397
|
-
}
|
|
398
282
|
|
|
399
283
|
export interface ThirdPartyFirewallPolicy {
|
|
400
284
|
|
|
401
285
|
FirewallDeploymentModel?: FirewallDeploymentModel | string;
|
|
402
286
|
}
|
|
403
|
-
export declare namespace ThirdPartyFirewallPolicy {
|
|
404
|
-
|
|
405
|
-
const filterSensitiveLog: (obj: ThirdPartyFirewallPolicy) => any;
|
|
406
|
-
}
|
|
407
287
|
|
|
408
288
|
export interface PolicyOption {
|
|
409
289
|
|
|
@@ -411,10 +291,6 @@ export interface PolicyOption {
|
|
|
411
291
|
|
|
412
292
|
ThirdPartyFirewallPolicy?: ThirdPartyFirewallPolicy;
|
|
413
293
|
}
|
|
414
|
-
export declare namespace PolicyOption {
|
|
415
|
-
|
|
416
|
-
const filterSensitiveLog: (obj: PolicyOption) => any;
|
|
417
|
-
}
|
|
418
294
|
export declare enum SecurityServiceType {
|
|
419
295
|
DNS_FIREWALL = "DNS_FIREWALL",
|
|
420
296
|
NETWORK_FIREWALL = "NETWORK_FIREWALL",
|
|
@@ -435,10 +311,6 @@ export interface SecurityServicePolicyData {
|
|
|
435
311
|
|
|
436
312
|
PolicyOption?: PolicyOption;
|
|
437
313
|
}
|
|
438
|
-
export declare namespace SecurityServicePolicyData {
|
|
439
|
-
|
|
440
|
-
const filterSensitiveLog: (obj: SecurityServicePolicyData) => any;
|
|
441
|
-
}
|
|
442
314
|
|
|
443
315
|
export interface Policy {
|
|
444
316
|
|
|
@@ -466,20 +338,12 @@ export interface Policy {
|
|
|
466
338
|
|
|
467
339
|
ExcludeMap?: Record<string, string[]>;
|
|
468
340
|
}
|
|
469
|
-
export declare namespace Policy {
|
|
470
|
-
|
|
471
|
-
const filterSensitiveLog: (obj: Policy) => any;
|
|
472
|
-
}
|
|
473
341
|
export interface GetPolicyResponse {
|
|
474
342
|
|
|
475
343
|
Policy?: Policy;
|
|
476
344
|
|
|
477
345
|
PolicyArn?: string;
|
|
478
346
|
}
|
|
479
|
-
export declare namespace GetPolicyResponse {
|
|
480
|
-
|
|
481
|
-
const filterSensitiveLog: (obj: GetPolicyResponse) => any;
|
|
482
|
-
}
|
|
483
347
|
|
|
484
348
|
export declare class InvalidTypeException extends __BaseException {
|
|
485
349
|
readonly name: "InvalidTypeException";
|
|
@@ -502,10 +366,6 @@ export interface GetProtectionStatusRequest {
|
|
|
502
366
|
|
|
503
367
|
MaxResults?: number;
|
|
504
368
|
}
|
|
505
|
-
export declare namespace GetProtectionStatusRequest {
|
|
506
|
-
|
|
507
|
-
const filterSensitiveLog: (obj: GetProtectionStatusRequest) => any;
|
|
508
|
-
}
|
|
509
369
|
export interface GetProtectionStatusResponse {
|
|
510
370
|
|
|
511
371
|
AdminAccountId?: string;
|
|
@@ -516,20 +376,12 @@ export interface GetProtectionStatusResponse {
|
|
|
516
376
|
|
|
517
377
|
NextToken?: string;
|
|
518
378
|
}
|
|
519
|
-
export declare namespace GetProtectionStatusResponse {
|
|
520
|
-
|
|
521
|
-
const filterSensitiveLog: (obj: GetProtectionStatusResponse) => any;
|
|
522
|
-
}
|
|
523
379
|
export interface GetProtocolsListRequest {
|
|
524
380
|
|
|
525
381
|
ListId: string | undefined;
|
|
526
382
|
|
|
527
383
|
DefaultList?: boolean;
|
|
528
384
|
}
|
|
529
|
-
export declare namespace GetProtocolsListRequest {
|
|
530
|
-
|
|
531
|
-
const filterSensitiveLog: (obj: GetProtocolsListRequest) => any;
|
|
532
|
-
}
|
|
533
385
|
|
|
534
386
|
export interface ProtocolsListData {
|
|
535
387
|
|
|
@@ -547,28 +399,16 @@ export interface ProtocolsListData {
|
|
|
547
399
|
|
|
548
400
|
PreviousProtocolsList?: Record<string, string[]>;
|
|
549
401
|
}
|
|
550
|
-
export declare namespace ProtocolsListData {
|
|
551
|
-
|
|
552
|
-
const filterSensitiveLog: (obj: ProtocolsListData) => any;
|
|
553
|
-
}
|
|
554
402
|
export interface GetProtocolsListResponse {
|
|
555
403
|
|
|
556
404
|
ProtocolsList?: ProtocolsListData;
|
|
557
405
|
|
|
558
406
|
ProtocolsListArn?: string;
|
|
559
407
|
}
|
|
560
|
-
export declare namespace GetProtocolsListResponse {
|
|
561
|
-
|
|
562
|
-
const filterSensitiveLog: (obj: GetProtocolsListResponse) => any;
|
|
563
|
-
}
|
|
564
408
|
export interface GetThirdPartyFirewallAssociationStatusRequest {
|
|
565
409
|
|
|
566
410
|
ThirdPartyFirewall: ThirdPartyFirewall | string | undefined;
|
|
567
411
|
}
|
|
568
|
-
export declare namespace GetThirdPartyFirewallAssociationStatusRequest {
|
|
569
|
-
|
|
570
|
-
const filterSensitiveLog: (obj: GetThirdPartyFirewallAssociationStatusRequest) => any;
|
|
571
|
-
}
|
|
572
412
|
export declare enum MarketplaceSubscriptionOnboardingStatus {
|
|
573
413
|
COMPLETE = "COMPLETE",
|
|
574
414
|
NOT_COMPLETE = "NOT_COMPLETE",
|
|
@@ -580,10 +420,6 @@ export interface GetThirdPartyFirewallAssociationStatusResponse {
|
|
|
580
420
|
|
|
581
421
|
MarketplaceOnboardingStatus?: MarketplaceSubscriptionOnboardingStatus | string;
|
|
582
422
|
}
|
|
583
|
-
export declare namespace GetThirdPartyFirewallAssociationStatusResponse {
|
|
584
|
-
|
|
585
|
-
const filterSensitiveLog: (obj: GetThirdPartyFirewallAssociationStatusResponse) => any;
|
|
586
|
-
}
|
|
587
423
|
export interface GetViolationDetailsRequest {
|
|
588
424
|
|
|
589
425
|
PolicyId: string | undefined;
|
|
@@ -594,10 +430,6 @@ export interface GetViolationDetailsRequest {
|
|
|
594
430
|
|
|
595
431
|
ResourceType: string | undefined;
|
|
596
432
|
}
|
|
597
|
-
export declare namespace GetViolationDetailsRequest {
|
|
598
|
-
|
|
599
|
-
const filterSensitiveLog: (obj: GetViolationDetailsRequest) => any;
|
|
600
|
-
}
|
|
601
433
|
|
|
602
434
|
export interface Tag {
|
|
603
435
|
|
|
@@ -605,10 +437,6 @@ export interface Tag {
|
|
|
605
437
|
|
|
606
438
|
Value: string | undefined;
|
|
607
439
|
}
|
|
608
|
-
export declare namespace Tag {
|
|
609
|
-
|
|
610
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
611
|
-
}
|
|
612
440
|
|
|
613
441
|
export interface PartialMatch {
|
|
614
442
|
|
|
@@ -616,10 +444,6 @@ export interface PartialMatch {
|
|
|
616
444
|
|
|
617
445
|
TargetViolationReasons?: string[];
|
|
618
446
|
}
|
|
619
|
-
export declare namespace PartialMatch {
|
|
620
|
-
|
|
621
|
-
const filterSensitiveLog: (obj: PartialMatch) => any;
|
|
622
|
-
}
|
|
623
447
|
export declare enum RemediationActionType {
|
|
624
448
|
Modify = "MODIFY",
|
|
625
449
|
Remove = "REMOVE"
|
|
@@ -639,10 +463,6 @@ export interface SecurityGroupRuleDescription {
|
|
|
639
463
|
|
|
640
464
|
ToPort?: number;
|
|
641
465
|
}
|
|
642
|
-
export declare namespace SecurityGroupRuleDescription {
|
|
643
|
-
|
|
644
|
-
const filterSensitiveLog: (obj: SecurityGroupRuleDescription) => any;
|
|
645
|
-
}
|
|
646
466
|
|
|
647
467
|
export interface SecurityGroupRemediationAction {
|
|
648
468
|
|
|
@@ -654,10 +474,6 @@ export interface SecurityGroupRemediationAction {
|
|
|
654
474
|
|
|
655
475
|
IsDefaultAction?: boolean;
|
|
656
476
|
}
|
|
657
|
-
export declare namespace SecurityGroupRemediationAction {
|
|
658
|
-
|
|
659
|
-
const filterSensitiveLog: (obj: SecurityGroupRemediationAction) => any;
|
|
660
|
-
}
|
|
661
477
|
|
|
662
478
|
export interface AwsVPCSecurityGroupViolation {
|
|
663
479
|
|
|
@@ -669,10 +485,6 @@ export interface AwsVPCSecurityGroupViolation {
|
|
|
669
485
|
|
|
670
486
|
PossibleSecurityGroupRemediationActions?: SecurityGroupRemediationAction[];
|
|
671
487
|
}
|
|
672
|
-
export declare namespace AwsVPCSecurityGroupViolation {
|
|
673
|
-
|
|
674
|
-
const filterSensitiveLog: (obj: AwsVPCSecurityGroupViolation) => any;
|
|
675
|
-
}
|
|
676
488
|
|
|
677
489
|
export interface DnsDuplicateRuleGroupViolation {
|
|
678
490
|
|
|
@@ -680,10 +492,6 @@ export interface DnsDuplicateRuleGroupViolation {
|
|
|
680
492
|
|
|
681
493
|
ViolationTargetDescription?: string;
|
|
682
494
|
}
|
|
683
|
-
export declare namespace DnsDuplicateRuleGroupViolation {
|
|
684
|
-
|
|
685
|
-
const filterSensitiveLog: (obj: DnsDuplicateRuleGroupViolation) => any;
|
|
686
|
-
}
|
|
687
495
|
|
|
688
496
|
export interface DnsRuleGroupLimitExceededViolation {
|
|
689
497
|
|
|
@@ -693,10 +501,6 @@ export interface DnsRuleGroupLimitExceededViolation {
|
|
|
693
501
|
|
|
694
502
|
NumberOfRuleGroupsAlreadyAssociated?: number;
|
|
695
503
|
}
|
|
696
|
-
export declare namespace DnsRuleGroupLimitExceededViolation {
|
|
697
|
-
|
|
698
|
-
const filterSensitiveLog: (obj: DnsRuleGroupLimitExceededViolation) => any;
|
|
699
|
-
}
|
|
700
504
|
|
|
701
505
|
export interface DnsRuleGroupPriorityConflictViolation {
|
|
702
506
|
|
|
@@ -710,10 +514,6 @@ export interface DnsRuleGroupPriorityConflictViolation {
|
|
|
710
514
|
|
|
711
515
|
UnavailablePriorities?: number[];
|
|
712
516
|
}
|
|
713
|
-
export declare namespace DnsRuleGroupPriorityConflictViolation {
|
|
714
|
-
|
|
715
|
-
const filterSensitiveLog: (obj: DnsRuleGroupPriorityConflictViolation) => any;
|
|
716
|
-
}
|
|
717
517
|
|
|
718
518
|
export interface FirewallSubnetIsOutOfScopeViolation {
|
|
719
519
|
|
|
@@ -727,10 +527,6 @@ export interface FirewallSubnetIsOutOfScopeViolation {
|
|
|
727
527
|
|
|
728
528
|
VpcEndpointId?: string;
|
|
729
529
|
}
|
|
730
|
-
export declare namespace FirewallSubnetIsOutOfScopeViolation {
|
|
731
|
-
|
|
732
|
-
const filterSensitiveLog: (obj: FirewallSubnetIsOutOfScopeViolation) => any;
|
|
733
|
-
}
|
|
734
530
|
|
|
735
531
|
export interface FirewallSubnetMissingVPCEndpointViolation {
|
|
736
532
|
|
|
@@ -742,10 +538,6 @@ export interface FirewallSubnetMissingVPCEndpointViolation {
|
|
|
742
538
|
|
|
743
539
|
SubnetAvailabilityZoneId?: string;
|
|
744
540
|
}
|
|
745
|
-
export declare namespace FirewallSubnetMissingVPCEndpointViolation {
|
|
746
|
-
|
|
747
|
-
const filterSensitiveLog: (obj: FirewallSubnetMissingVPCEndpointViolation) => any;
|
|
748
|
-
}
|
|
749
541
|
export declare enum DestinationType {
|
|
750
542
|
IPV4 = "IPV4",
|
|
751
543
|
IPV6 = "IPV6",
|
|
@@ -774,10 +566,6 @@ export interface Route {
|
|
|
774
566
|
|
|
775
567
|
Target?: string;
|
|
776
568
|
}
|
|
777
|
-
export declare namespace Route {
|
|
778
|
-
|
|
779
|
-
const filterSensitiveLog: (obj: Route) => any;
|
|
780
|
-
}
|
|
781
569
|
|
|
782
570
|
export interface NetworkFirewallBlackHoleRouteDetectedViolation {
|
|
783
571
|
|
|
@@ -789,10 +577,6 @@ export interface NetworkFirewallBlackHoleRouteDetectedViolation {
|
|
|
789
577
|
|
|
790
578
|
ViolatingRoutes?: Route[];
|
|
791
579
|
}
|
|
792
|
-
export declare namespace NetworkFirewallBlackHoleRouteDetectedViolation {
|
|
793
|
-
|
|
794
|
-
const filterSensitiveLog: (obj: NetworkFirewallBlackHoleRouteDetectedViolation) => any;
|
|
795
|
-
}
|
|
796
580
|
|
|
797
581
|
export interface ExpectedRoute {
|
|
798
582
|
|
|
@@ -808,10 +592,6 @@ export interface ExpectedRoute {
|
|
|
808
592
|
|
|
809
593
|
RouteTableId?: string;
|
|
810
594
|
}
|
|
811
|
-
export declare namespace ExpectedRoute {
|
|
812
|
-
|
|
813
|
-
const filterSensitiveLog: (obj: ExpectedRoute) => any;
|
|
814
|
-
}
|
|
815
595
|
|
|
816
596
|
export interface NetworkFirewallInternetTrafficNotInspectedViolation {
|
|
817
597
|
|
|
@@ -845,10 +625,6 @@ export interface NetworkFirewallInternetTrafficNotInspectedViolation {
|
|
|
845
625
|
|
|
846
626
|
VpcId?: string;
|
|
847
627
|
}
|
|
848
|
-
export declare namespace NetworkFirewallInternetTrafficNotInspectedViolation {
|
|
849
|
-
|
|
850
|
-
const filterSensitiveLog: (obj: NetworkFirewallInternetTrafficNotInspectedViolation) => any;
|
|
851
|
-
}
|
|
852
628
|
|
|
853
629
|
export interface NetworkFirewallInvalidRouteConfigurationViolation {
|
|
854
630
|
|
|
@@ -884,10 +660,6 @@ export interface NetworkFirewallInvalidRouteConfigurationViolation {
|
|
|
884
660
|
|
|
885
661
|
VpcId?: string;
|
|
886
662
|
}
|
|
887
|
-
export declare namespace NetworkFirewallInvalidRouteConfigurationViolation {
|
|
888
|
-
|
|
889
|
-
const filterSensitiveLog: (obj: NetworkFirewallInvalidRouteConfigurationViolation) => any;
|
|
890
|
-
}
|
|
891
663
|
|
|
892
664
|
export interface NetworkFirewallMissingExpectedRoutesViolation {
|
|
893
665
|
|
|
@@ -897,10 +669,6 @@ export interface NetworkFirewallMissingExpectedRoutesViolation {
|
|
|
897
669
|
|
|
898
670
|
VpcId?: string;
|
|
899
671
|
}
|
|
900
|
-
export declare namespace NetworkFirewallMissingExpectedRoutesViolation {
|
|
901
|
-
|
|
902
|
-
const filterSensitiveLog: (obj: NetworkFirewallMissingExpectedRoutesViolation) => any;
|
|
903
|
-
}
|
|
904
672
|
|
|
905
673
|
export interface NetworkFirewallMissingExpectedRTViolation {
|
|
906
674
|
|
|
@@ -914,10 +682,6 @@ export interface NetworkFirewallMissingExpectedRTViolation {
|
|
|
914
682
|
|
|
915
683
|
ExpectedRouteTable?: string;
|
|
916
684
|
}
|
|
917
|
-
export declare namespace NetworkFirewallMissingExpectedRTViolation {
|
|
918
|
-
|
|
919
|
-
const filterSensitiveLog: (obj: NetworkFirewallMissingExpectedRTViolation) => any;
|
|
920
|
-
}
|
|
921
685
|
|
|
922
686
|
export interface NetworkFirewallMissingFirewallViolation {
|
|
923
687
|
|
|
@@ -929,10 +693,6 @@ export interface NetworkFirewallMissingFirewallViolation {
|
|
|
929
693
|
|
|
930
694
|
TargetViolationReason?: string;
|
|
931
695
|
}
|
|
932
|
-
export declare namespace NetworkFirewallMissingFirewallViolation {
|
|
933
|
-
|
|
934
|
-
const filterSensitiveLog: (obj: NetworkFirewallMissingFirewallViolation) => any;
|
|
935
|
-
}
|
|
936
696
|
|
|
937
697
|
export interface NetworkFirewallMissingSubnetViolation {
|
|
938
698
|
|
|
@@ -944,10 +704,6 @@ export interface NetworkFirewallMissingSubnetViolation {
|
|
|
944
704
|
|
|
945
705
|
TargetViolationReason?: string;
|
|
946
706
|
}
|
|
947
|
-
export declare namespace NetworkFirewallMissingSubnetViolation {
|
|
948
|
-
|
|
949
|
-
const filterSensitiveLog: (obj: NetworkFirewallMissingSubnetViolation) => any;
|
|
950
|
-
}
|
|
951
707
|
export declare enum RuleOrder {
|
|
952
708
|
DEFAULT_ACTION_ORDER = "DEFAULT_ACTION_ORDER",
|
|
953
709
|
STRICT_ORDER = "STRICT_ORDER"
|
|
@@ -957,10 +713,6 @@ export interface StatefulEngineOptions {
|
|
|
957
713
|
|
|
958
714
|
RuleOrder?: RuleOrder | string;
|
|
959
715
|
}
|
|
960
|
-
export declare namespace StatefulEngineOptions {
|
|
961
|
-
|
|
962
|
-
const filterSensitiveLog: (obj: StatefulEngineOptions) => any;
|
|
963
|
-
}
|
|
964
716
|
|
|
965
717
|
export interface StatefulRuleGroup {
|
|
966
718
|
|
|
@@ -970,10 +722,6 @@ export interface StatefulRuleGroup {
|
|
|
970
722
|
|
|
971
723
|
Priority?: number;
|
|
972
724
|
}
|
|
973
|
-
export declare namespace StatefulRuleGroup {
|
|
974
|
-
|
|
975
|
-
const filterSensitiveLog: (obj: StatefulRuleGroup) => any;
|
|
976
|
-
}
|
|
977
725
|
|
|
978
726
|
export interface StatelessRuleGroup {
|
|
979
727
|
|
|
@@ -983,10 +731,6 @@ export interface StatelessRuleGroup {
|
|
|
983
731
|
|
|
984
732
|
Priority?: number;
|
|
985
733
|
}
|
|
986
|
-
export declare namespace StatelessRuleGroup {
|
|
987
|
-
|
|
988
|
-
const filterSensitiveLog: (obj: StatelessRuleGroup) => any;
|
|
989
|
-
}
|
|
990
734
|
|
|
991
735
|
export interface NetworkFirewallPolicyDescription {
|
|
992
736
|
|
|
@@ -1004,10 +748,6 @@ export interface NetworkFirewallPolicyDescription {
|
|
|
1004
748
|
|
|
1005
749
|
StatefulEngineOptions?: StatefulEngineOptions;
|
|
1006
750
|
}
|
|
1007
|
-
export declare namespace NetworkFirewallPolicyDescription {
|
|
1008
|
-
|
|
1009
|
-
const filterSensitiveLog: (obj: NetworkFirewallPolicyDescription) => any;
|
|
1010
|
-
}
|
|
1011
751
|
|
|
1012
752
|
export interface NetworkFirewallPolicyModifiedViolation {
|
|
1013
753
|
|
|
@@ -1017,10 +757,6 @@ export interface NetworkFirewallPolicyModifiedViolation {
|
|
|
1017
757
|
|
|
1018
758
|
ExpectedPolicyDescription?: NetworkFirewallPolicyDescription;
|
|
1019
759
|
}
|
|
1020
|
-
export declare namespace NetworkFirewallPolicyModifiedViolation {
|
|
1021
|
-
|
|
1022
|
-
const filterSensitiveLog: (obj: NetworkFirewallPolicyModifiedViolation) => any;
|
|
1023
|
-
}
|
|
1024
760
|
|
|
1025
761
|
export interface NetworkFirewallUnexpectedFirewallRoutesViolation {
|
|
1026
762
|
|
|
@@ -1034,10 +770,6 @@ export interface NetworkFirewallUnexpectedFirewallRoutesViolation {
|
|
|
1034
770
|
|
|
1035
771
|
VpcId?: string;
|
|
1036
772
|
}
|
|
1037
|
-
export declare namespace NetworkFirewallUnexpectedFirewallRoutesViolation {
|
|
1038
|
-
|
|
1039
|
-
const filterSensitiveLog: (obj: NetworkFirewallUnexpectedFirewallRoutesViolation) => any;
|
|
1040
|
-
}
|
|
1041
773
|
|
|
1042
774
|
export interface NetworkFirewallUnexpectedGatewayRoutesViolation {
|
|
1043
775
|
|
|
@@ -1049,10 +781,6 @@ export interface NetworkFirewallUnexpectedGatewayRoutesViolation {
|
|
|
1049
781
|
|
|
1050
782
|
VpcId?: string;
|
|
1051
783
|
}
|
|
1052
|
-
export declare namespace NetworkFirewallUnexpectedGatewayRoutesViolation {
|
|
1053
|
-
|
|
1054
|
-
const filterSensitiveLog: (obj: NetworkFirewallUnexpectedGatewayRoutesViolation) => any;
|
|
1055
|
-
}
|
|
1056
784
|
|
|
1057
785
|
export interface EC2AssociateRouteTableAction {
|
|
1058
786
|
|
|
@@ -1064,10 +792,6 @@ export interface EC2AssociateRouteTableAction {
|
|
|
1064
792
|
|
|
1065
793
|
GatewayId?: ActionTarget;
|
|
1066
794
|
}
|
|
1067
|
-
export declare namespace EC2AssociateRouteTableAction {
|
|
1068
|
-
|
|
1069
|
-
const filterSensitiveLog: (obj: EC2AssociateRouteTableAction) => any;
|
|
1070
|
-
}
|
|
1071
795
|
|
|
1072
796
|
export interface EC2CopyRouteTableAction {
|
|
1073
797
|
|
|
@@ -1077,10 +801,6 @@ export interface EC2CopyRouteTableAction {
|
|
|
1077
801
|
|
|
1078
802
|
RouteTableId: ActionTarget | undefined;
|
|
1079
803
|
}
|
|
1080
|
-
export declare namespace EC2CopyRouteTableAction {
|
|
1081
|
-
|
|
1082
|
-
const filterSensitiveLog: (obj: EC2CopyRouteTableAction) => any;
|
|
1083
|
-
}
|
|
1084
804
|
|
|
1085
805
|
export interface EC2CreateRouteAction {
|
|
1086
806
|
|
|
@@ -1098,10 +818,6 @@ export interface EC2CreateRouteAction {
|
|
|
1098
818
|
|
|
1099
819
|
RouteTableId: ActionTarget | undefined;
|
|
1100
820
|
}
|
|
1101
|
-
export declare namespace EC2CreateRouteAction {
|
|
1102
|
-
|
|
1103
|
-
const filterSensitiveLog: (obj: EC2CreateRouteAction) => any;
|
|
1104
|
-
}
|
|
1105
821
|
|
|
1106
822
|
export interface EC2CreateRouteTableAction {
|
|
1107
823
|
|
|
@@ -1109,10 +825,6 @@ export interface EC2CreateRouteTableAction {
|
|
|
1109
825
|
|
|
1110
826
|
VpcId: ActionTarget | undefined;
|
|
1111
827
|
}
|
|
1112
|
-
export declare namespace EC2CreateRouteTableAction {
|
|
1113
|
-
|
|
1114
|
-
const filterSensitiveLog: (obj: EC2CreateRouteTableAction) => any;
|
|
1115
|
-
}
|
|
1116
828
|
|
|
1117
829
|
export interface EC2DeleteRouteAction {
|
|
1118
830
|
|
|
@@ -1126,10 +838,6 @@ export interface EC2DeleteRouteAction {
|
|
|
1126
838
|
|
|
1127
839
|
RouteTableId: ActionTarget | undefined;
|
|
1128
840
|
}
|
|
1129
|
-
export declare namespace EC2DeleteRouteAction {
|
|
1130
|
-
|
|
1131
|
-
const filterSensitiveLog: (obj: EC2DeleteRouteAction) => any;
|
|
1132
|
-
}
|
|
1133
841
|
|
|
1134
842
|
export interface EC2ReplaceRouteAction {
|
|
1135
843
|
|
|
@@ -1145,10 +853,6 @@ export interface EC2ReplaceRouteAction {
|
|
|
1145
853
|
|
|
1146
854
|
RouteTableId: ActionTarget | undefined;
|
|
1147
855
|
}
|
|
1148
|
-
export declare namespace EC2ReplaceRouteAction {
|
|
1149
|
-
|
|
1150
|
-
const filterSensitiveLog: (obj: EC2ReplaceRouteAction) => any;
|
|
1151
|
-
}
|
|
1152
856
|
|
|
1153
857
|
export interface EC2ReplaceRouteTableAssociationAction {
|
|
1154
858
|
|
|
@@ -1158,10 +862,6 @@ export interface EC2ReplaceRouteTableAssociationAction {
|
|
|
1158
862
|
|
|
1159
863
|
RouteTableId: ActionTarget | undefined;
|
|
1160
864
|
}
|
|
1161
|
-
export declare namespace EC2ReplaceRouteTableAssociationAction {
|
|
1162
|
-
|
|
1163
|
-
const filterSensitiveLog: (obj: EC2ReplaceRouteTableAssociationAction) => any;
|
|
1164
|
-
}
|
|
1165
865
|
|
|
1166
866
|
export interface FMSPolicyUpdateFirewallCreationConfigAction {
|
|
1167
867
|
|
|
@@ -1169,10 +869,6 @@ export interface FMSPolicyUpdateFirewallCreationConfigAction {
|
|
|
1169
869
|
|
|
1170
870
|
FirewallCreationConfig?: string;
|
|
1171
871
|
}
|
|
1172
|
-
export declare namespace FMSPolicyUpdateFirewallCreationConfigAction {
|
|
1173
|
-
|
|
1174
|
-
const filterSensitiveLog: (obj: FMSPolicyUpdateFirewallCreationConfigAction) => any;
|
|
1175
|
-
}
|
|
1176
872
|
|
|
1177
873
|
export interface RemediationAction {
|
|
1178
874
|
|
|
@@ -1194,10 +890,6 @@ export interface RemediationAction {
|
|
|
1194
890
|
|
|
1195
891
|
FMSPolicyUpdateFirewallCreationConfigAction?: FMSPolicyUpdateFirewallCreationConfigAction;
|
|
1196
892
|
}
|
|
1197
|
-
export declare namespace RemediationAction {
|
|
1198
|
-
|
|
1199
|
-
const filterSensitiveLog: (obj: RemediationAction) => any;
|
|
1200
|
-
}
|
|
1201
893
|
|
|
1202
894
|
export interface RemediationActionWithOrder {
|
|
1203
895
|
|
|
@@ -1205,10 +897,6 @@ export interface RemediationActionWithOrder {
|
|
|
1205
897
|
|
|
1206
898
|
Order?: number;
|
|
1207
899
|
}
|
|
1208
|
-
export declare namespace RemediationActionWithOrder {
|
|
1209
|
-
|
|
1210
|
-
const filterSensitiveLog: (obj: RemediationActionWithOrder) => any;
|
|
1211
|
-
}
|
|
1212
900
|
|
|
1213
901
|
export interface PossibleRemediationAction {
|
|
1214
902
|
|
|
@@ -1218,10 +906,6 @@ export interface PossibleRemediationAction {
|
|
|
1218
906
|
|
|
1219
907
|
IsDefaultAction?: boolean;
|
|
1220
908
|
}
|
|
1221
|
-
export declare namespace PossibleRemediationAction {
|
|
1222
|
-
|
|
1223
|
-
const filterSensitiveLog: (obj: PossibleRemediationAction) => any;
|
|
1224
|
-
}
|
|
1225
909
|
|
|
1226
910
|
export interface PossibleRemediationActions {
|
|
1227
911
|
|
|
@@ -1229,10 +913,6 @@ export interface PossibleRemediationActions {
|
|
|
1229
913
|
|
|
1230
914
|
Actions?: PossibleRemediationAction[];
|
|
1231
915
|
}
|
|
1232
|
-
export declare namespace PossibleRemediationActions {
|
|
1233
|
-
|
|
1234
|
-
const filterSensitiveLog: (obj: PossibleRemediationActions) => any;
|
|
1235
|
-
}
|
|
1236
916
|
|
|
1237
917
|
export interface RouteHasOutOfScopeEndpointViolation {
|
|
1238
918
|
|
|
@@ -1260,10 +940,6 @@ export interface RouteHasOutOfScopeEndpointViolation {
|
|
|
1260
940
|
|
|
1261
941
|
InternetGatewayRoutes?: Route[];
|
|
1262
942
|
}
|
|
1263
|
-
export declare namespace RouteHasOutOfScopeEndpointViolation {
|
|
1264
|
-
|
|
1265
|
-
const filterSensitiveLog: (obj: RouteHasOutOfScopeEndpointViolation) => any;
|
|
1266
|
-
}
|
|
1267
943
|
|
|
1268
944
|
export interface ThirdPartyFirewallMissingExpectedRouteTableViolation {
|
|
1269
945
|
|
|
@@ -1277,10 +953,6 @@ export interface ThirdPartyFirewallMissingExpectedRouteTableViolation {
|
|
|
1277
953
|
|
|
1278
954
|
ExpectedRouteTable?: string;
|
|
1279
955
|
}
|
|
1280
|
-
export declare namespace ThirdPartyFirewallMissingExpectedRouteTableViolation {
|
|
1281
|
-
|
|
1282
|
-
const filterSensitiveLog: (obj: ThirdPartyFirewallMissingExpectedRouteTableViolation) => any;
|
|
1283
|
-
}
|
|
1284
956
|
|
|
1285
957
|
export interface ThirdPartyFirewallMissingFirewallViolation {
|
|
1286
958
|
|
|
@@ -1292,10 +964,6 @@ export interface ThirdPartyFirewallMissingFirewallViolation {
|
|
|
1292
964
|
|
|
1293
965
|
TargetViolationReason?: string;
|
|
1294
966
|
}
|
|
1295
|
-
export declare namespace ThirdPartyFirewallMissingFirewallViolation {
|
|
1296
|
-
|
|
1297
|
-
const filterSensitiveLog: (obj: ThirdPartyFirewallMissingFirewallViolation) => any;
|
|
1298
|
-
}
|
|
1299
967
|
|
|
1300
968
|
export interface ThirdPartyFirewallMissingSubnetViolation {
|
|
1301
969
|
|
|
@@ -1307,10 +975,6 @@ export interface ThirdPartyFirewallMissingSubnetViolation {
|
|
|
1307
975
|
|
|
1308
976
|
TargetViolationReason?: string;
|
|
1309
977
|
}
|
|
1310
|
-
export declare namespace ThirdPartyFirewallMissingSubnetViolation {
|
|
1311
|
-
|
|
1312
|
-
const filterSensitiveLog: (obj: ThirdPartyFirewallMissingSubnetViolation) => any;
|
|
1313
|
-
}
|
|
1314
978
|
|
|
1315
979
|
export interface ResourceViolation {
|
|
1316
980
|
|
|
@@ -1360,10 +1024,6 @@ export interface ResourceViolation {
|
|
|
1360
1024
|
|
|
1361
1025
|
FirewallSubnetMissingVPCEndpointViolation?: FirewallSubnetMissingVPCEndpointViolation;
|
|
1362
1026
|
}
|
|
1363
|
-
export declare namespace ResourceViolation {
|
|
1364
|
-
|
|
1365
|
-
const filterSensitiveLog: (obj: ResourceViolation) => any;
|
|
1366
|
-
}
|
|
1367
1027
|
|
|
1368
1028
|
export interface ViolationDetail {
|
|
1369
1029
|
|
|
@@ -1381,18 +1041,10 @@ export interface ViolationDetail {
|
|
|
1381
1041
|
|
|
1382
1042
|
ResourceDescription?: string;
|
|
1383
1043
|
}
|
|
1384
|
-
export declare namespace ViolationDetail {
|
|
1385
|
-
|
|
1386
|
-
const filterSensitiveLog: (obj: ViolationDetail) => any;
|
|
1387
|
-
}
|
|
1388
1044
|
export interface GetViolationDetailsResponse {
|
|
1389
1045
|
|
|
1390
1046
|
ViolationDetail?: ViolationDetail;
|
|
1391
1047
|
}
|
|
1392
|
-
export declare namespace GetViolationDetailsResponse {
|
|
1393
|
-
|
|
1394
|
-
const filterSensitiveLog: (obj: GetViolationDetailsResponse) => any;
|
|
1395
|
-
}
|
|
1396
1048
|
export interface ListAppsListsRequest {
|
|
1397
1049
|
|
|
1398
1050
|
DefaultLists?: boolean;
|
|
@@ -1401,20 +1053,12 @@ export interface ListAppsListsRequest {
|
|
|
1401
1053
|
|
|
1402
1054
|
MaxResults: number | undefined;
|
|
1403
1055
|
}
|
|
1404
|
-
export declare namespace ListAppsListsRequest {
|
|
1405
|
-
|
|
1406
|
-
const filterSensitiveLog: (obj: ListAppsListsRequest) => any;
|
|
1407
|
-
}
|
|
1408
1056
|
export interface ListAppsListsResponse {
|
|
1409
1057
|
|
|
1410
1058
|
AppsLists?: AppsListDataSummary[];
|
|
1411
1059
|
|
|
1412
1060
|
NextToken?: string;
|
|
1413
1061
|
}
|
|
1414
|
-
export declare namespace ListAppsListsResponse {
|
|
1415
|
-
|
|
1416
|
-
const filterSensitiveLog: (obj: ListAppsListsResponse) => any;
|
|
1417
|
-
}
|
|
1418
1062
|
export interface ListComplianceStatusRequest {
|
|
1419
1063
|
|
|
1420
1064
|
PolicyId: string | undefined;
|
|
@@ -1423,10 +1067,6 @@ export interface ListComplianceStatusRequest {
|
|
|
1423
1067
|
|
|
1424
1068
|
MaxResults?: number;
|
|
1425
1069
|
}
|
|
1426
|
-
export declare namespace ListComplianceStatusRequest {
|
|
1427
|
-
|
|
1428
|
-
const filterSensitiveLog: (obj: ListComplianceStatusRequest) => any;
|
|
1429
|
-
}
|
|
1430
1070
|
export declare enum PolicyComplianceStatusType {
|
|
1431
1071
|
Compliant = "COMPLIANT",
|
|
1432
1072
|
NonCompliant = "NON_COMPLIANT"
|
|
@@ -1440,10 +1080,6 @@ export interface EvaluationResult {
|
|
|
1440
1080
|
|
|
1441
1081
|
EvaluationLimitExceeded?: boolean;
|
|
1442
1082
|
}
|
|
1443
|
-
export declare namespace EvaluationResult {
|
|
1444
|
-
|
|
1445
|
-
const filterSensitiveLog: (obj: EvaluationResult) => any;
|
|
1446
|
-
}
|
|
1447
1083
|
|
|
1448
1084
|
export interface PolicyComplianceStatus {
|
|
1449
1085
|
|
|
@@ -1461,50 +1097,30 @@ export interface PolicyComplianceStatus {
|
|
|
1461
1097
|
|
|
1462
1098
|
IssueInfoMap?: Record<string, string>;
|
|
1463
1099
|
}
|
|
1464
|
-
export declare namespace PolicyComplianceStatus {
|
|
1465
|
-
|
|
1466
|
-
const filterSensitiveLog: (obj: PolicyComplianceStatus) => any;
|
|
1467
|
-
}
|
|
1468
1100
|
export interface ListComplianceStatusResponse {
|
|
1469
1101
|
|
|
1470
1102
|
PolicyComplianceStatusList?: PolicyComplianceStatus[];
|
|
1471
1103
|
|
|
1472
1104
|
NextToken?: string;
|
|
1473
1105
|
}
|
|
1474
|
-
export declare namespace ListComplianceStatusResponse {
|
|
1475
|
-
|
|
1476
|
-
const filterSensitiveLog: (obj: ListComplianceStatusResponse) => any;
|
|
1477
|
-
}
|
|
1478
1106
|
export interface ListMemberAccountsRequest {
|
|
1479
1107
|
|
|
1480
1108
|
NextToken?: string;
|
|
1481
1109
|
|
|
1482
1110
|
MaxResults?: number;
|
|
1483
1111
|
}
|
|
1484
|
-
export declare namespace ListMemberAccountsRequest {
|
|
1485
|
-
|
|
1486
|
-
const filterSensitiveLog: (obj: ListMemberAccountsRequest) => any;
|
|
1487
|
-
}
|
|
1488
1112
|
export interface ListMemberAccountsResponse {
|
|
1489
1113
|
|
|
1490
1114
|
MemberAccounts?: string[];
|
|
1491
1115
|
|
|
1492
1116
|
NextToken?: string;
|
|
1493
1117
|
}
|
|
1494
|
-
export declare namespace ListMemberAccountsResponse {
|
|
1495
|
-
|
|
1496
|
-
const filterSensitiveLog: (obj: ListMemberAccountsResponse) => any;
|
|
1497
|
-
}
|
|
1498
1118
|
export interface ListPoliciesRequest {
|
|
1499
1119
|
|
|
1500
1120
|
NextToken?: string;
|
|
1501
1121
|
|
|
1502
1122
|
MaxResults?: number;
|
|
1503
1123
|
}
|
|
1504
|
-
export declare namespace ListPoliciesRequest {
|
|
1505
|
-
|
|
1506
|
-
const filterSensitiveLog: (obj: ListPoliciesRequest) => any;
|
|
1507
|
-
}
|
|
1508
1124
|
|
|
1509
1125
|
export interface PolicySummary {
|
|
1510
1126
|
|
|
@@ -1522,20 +1138,12 @@ export interface PolicySummary {
|
|
|
1522
1138
|
|
|
1523
1139
|
DeleteUnusedFMManagedResources?: boolean;
|
|
1524
1140
|
}
|
|
1525
|
-
export declare namespace PolicySummary {
|
|
1526
|
-
|
|
1527
|
-
const filterSensitiveLog: (obj: PolicySummary) => any;
|
|
1528
|
-
}
|
|
1529
1141
|
export interface ListPoliciesResponse {
|
|
1530
1142
|
|
|
1531
1143
|
PolicyList?: PolicySummary[];
|
|
1532
1144
|
|
|
1533
1145
|
NextToken?: string;
|
|
1534
1146
|
}
|
|
1535
|
-
export declare namespace ListPoliciesResponse {
|
|
1536
|
-
|
|
1537
|
-
const filterSensitiveLog: (obj: ListPoliciesResponse) => any;
|
|
1538
|
-
}
|
|
1539
1147
|
export interface ListProtocolsListsRequest {
|
|
1540
1148
|
|
|
1541
1149
|
DefaultLists?: boolean;
|
|
@@ -1544,10 +1152,6 @@ export interface ListProtocolsListsRequest {
|
|
|
1544
1152
|
|
|
1545
1153
|
MaxResults: number | undefined;
|
|
1546
1154
|
}
|
|
1547
|
-
export declare namespace ListProtocolsListsRequest {
|
|
1548
|
-
|
|
1549
|
-
const filterSensitiveLog: (obj: ListProtocolsListsRequest) => any;
|
|
1550
|
-
}
|
|
1551
1155
|
|
|
1552
1156
|
export interface ProtocolsListDataSummary {
|
|
1553
1157
|
|
|
@@ -1559,36 +1163,20 @@ export interface ProtocolsListDataSummary {
|
|
|
1559
1163
|
|
|
1560
1164
|
ProtocolsList?: string[];
|
|
1561
1165
|
}
|
|
1562
|
-
export declare namespace ProtocolsListDataSummary {
|
|
1563
|
-
|
|
1564
|
-
const filterSensitiveLog: (obj: ProtocolsListDataSummary) => any;
|
|
1565
|
-
}
|
|
1566
1166
|
export interface ListProtocolsListsResponse {
|
|
1567
1167
|
|
|
1568
1168
|
ProtocolsLists?: ProtocolsListDataSummary[];
|
|
1569
1169
|
|
|
1570
1170
|
NextToken?: string;
|
|
1571
1171
|
}
|
|
1572
|
-
export declare namespace ListProtocolsListsResponse {
|
|
1573
|
-
|
|
1574
|
-
const filterSensitiveLog: (obj: ListProtocolsListsResponse) => any;
|
|
1575
|
-
}
|
|
1576
1172
|
export interface ListTagsForResourceRequest {
|
|
1577
1173
|
|
|
1578
1174
|
ResourceArn: string | undefined;
|
|
1579
1175
|
}
|
|
1580
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1581
|
-
|
|
1582
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1583
|
-
}
|
|
1584
1176
|
export interface ListTagsForResourceResponse {
|
|
1585
1177
|
|
|
1586
1178
|
TagList?: Tag[];
|
|
1587
1179
|
}
|
|
1588
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1589
|
-
|
|
1590
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1591
|
-
}
|
|
1592
1180
|
export interface ListThirdPartyFirewallFirewallPoliciesRequest {
|
|
1593
1181
|
|
|
1594
1182
|
ThirdPartyFirewall: ThirdPartyFirewall | string | undefined;
|
|
@@ -1597,10 +1185,6 @@ export interface ListThirdPartyFirewallFirewallPoliciesRequest {
|
|
|
1597
1185
|
|
|
1598
1186
|
MaxResults: number | undefined;
|
|
1599
1187
|
}
|
|
1600
|
-
export declare namespace ListThirdPartyFirewallFirewallPoliciesRequest {
|
|
1601
|
-
|
|
1602
|
-
const filterSensitiveLog: (obj: ListThirdPartyFirewallFirewallPoliciesRequest) => any;
|
|
1603
|
-
}
|
|
1604
1188
|
|
|
1605
1189
|
export interface ThirdPartyFirewallFirewallPolicy {
|
|
1606
1190
|
|
|
@@ -1608,119 +1192,301 @@ export interface ThirdPartyFirewallFirewallPolicy {
|
|
|
1608
1192
|
|
|
1609
1193
|
FirewallPolicyName?: string;
|
|
1610
1194
|
}
|
|
1611
|
-
export declare namespace ThirdPartyFirewallFirewallPolicy {
|
|
1612
|
-
|
|
1613
|
-
const filterSensitiveLog: (obj: ThirdPartyFirewallFirewallPolicy) => any;
|
|
1614
|
-
}
|
|
1615
1195
|
export interface ListThirdPartyFirewallFirewallPoliciesResponse {
|
|
1616
1196
|
|
|
1617
1197
|
ThirdPartyFirewallFirewallPolicies?: ThirdPartyFirewallFirewallPolicy[];
|
|
1618
1198
|
|
|
1619
1199
|
NextToken?: string;
|
|
1620
1200
|
}
|
|
1621
|
-
export declare namespace ListThirdPartyFirewallFirewallPoliciesResponse {
|
|
1622
|
-
|
|
1623
|
-
const filterSensitiveLog: (obj: ListThirdPartyFirewallFirewallPoliciesResponse) => any;
|
|
1624
|
-
}
|
|
1625
1201
|
export interface PutAppsListRequest {
|
|
1626
1202
|
|
|
1627
1203
|
AppsList: AppsListData | undefined;
|
|
1628
1204
|
|
|
1629
1205
|
TagList?: Tag[];
|
|
1630
1206
|
}
|
|
1631
|
-
export declare namespace PutAppsListRequest {
|
|
1632
|
-
|
|
1633
|
-
const filterSensitiveLog: (obj: PutAppsListRequest) => any;
|
|
1634
|
-
}
|
|
1635
1207
|
export interface PutAppsListResponse {
|
|
1636
1208
|
|
|
1637
1209
|
AppsList?: AppsListData;
|
|
1638
1210
|
|
|
1639
1211
|
AppsListArn?: string;
|
|
1640
1212
|
}
|
|
1641
|
-
export declare namespace PutAppsListResponse {
|
|
1642
|
-
|
|
1643
|
-
const filterSensitiveLog: (obj: PutAppsListResponse) => any;
|
|
1644
|
-
}
|
|
1645
1213
|
export interface PutNotificationChannelRequest {
|
|
1646
1214
|
|
|
1647
1215
|
SnsTopicArn: string | undefined;
|
|
1648
1216
|
|
|
1649
1217
|
SnsRoleName: string | undefined;
|
|
1650
1218
|
}
|
|
1651
|
-
export declare namespace PutNotificationChannelRequest {
|
|
1652
|
-
|
|
1653
|
-
const filterSensitiveLog: (obj: PutNotificationChannelRequest) => any;
|
|
1654
|
-
}
|
|
1655
1219
|
export interface PutPolicyRequest {
|
|
1656
1220
|
|
|
1657
1221
|
Policy: Policy | undefined;
|
|
1658
1222
|
|
|
1659
1223
|
TagList?: Tag[];
|
|
1660
1224
|
}
|
|
1661
|
-
export declare namespace PutPolicyRequest {
|
|
1662
|
-
|
|
1663
|
-
const filterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
1664
|
-
}
|
|
1665
1225
|
export interface PutPolicyResponse {
|
|
1666
1226
|
|
|
1667
1227
|
Policy?: Policy;
|
|
1668
1228
|
|
|
1669
1229
|
PolicyArn?: string;
|
|
1670
1230
|
}
|
|
1671
|
-
export declare namespace PutPolicyResponse {
|
|
1672
|
-
|
|
1673
|
-
const filterSensitiveLog: (obj: PutPolicyResponse) => any;
|
|
1674
|
-
}
|
|
1675
1231
|
export interface PutProtocolsListRequest {
|
|
1676
1232
|
|
|
1677
1233
|
ProtocolsList: ProtocolsListData | undefined;
|
|
1678
1234
|
|
|
1679
1235
|
TagList?: Tag[];
|
|
1680
1236
|
}
|
|
1681
|
-
export declare namespace PutProtocolsListRequest {
|
|
1682
|
-
|
|
1683
|
-
const filterSensitiveLog: (obj: PutProtocolsListRequest) => any;
|
|
1684
|
-
}
|
|
1685
1237
|
export interface PutProtocolsListResponse {
|
|
1686
1238
|
|
|
1687
1239
|
ProtocolsList?: ProtocolsListData;
|
|
1688
1240
|
|
|
1689
1241
|
ProtocolsListArn?: string;
|
|
1690
1242
|
}
|
|
1691
|
-
export declare namespace PutProtocolsListResponse {
|
|
1692
|
-
|
|
1693
|
-
const filterSensitiveLog: (obj: PutProtocolsListResponse) => any;
|
|
1694
|
-
}
|
|
1695
1243
|
export interface TagResourceRequest {
|
|
1696
1244
|
|
|
1697
1245
|
ResourceArn: string | undefined;
|
|
1698
1246
|
|
|
1699
1247
|
TagList: Tag[] | undefined;
|
|
1700
1248
|
}
|
|
1701
|
-
export declare namespace TagResourceRequest {
|
|
1702
|
-
|
|
1703
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1704
|
-
}
|
|
1705
1249
|
export interface TagResourceResponse {
|
|
1706
1250
|
}
|
|
1707
|
-
export declare namespace TagResourceResponse {
|
|
1708
|
-
|
|
1709
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1710
|
-
}
|
|
1711
1251
|
export interface UntagResourceRequest {
|
|
1712
1252
|
|
|
1713
1253
|
ResourceArn: string | undefined;
|
|
1714
1254
|
|
|
1715
1255
|
TagKeys: string[] | undefined;
|
|
1716
1256
|
}
|
|
1717
|
-
export declare namespace UntagResourceRequest {
|
|
1718
|
-
|
|
1719
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1720
|
-
}
|
|
1721
1257
|
export interface UntagResourceResponse {
|
|
1722
1258
|
}
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1259
|
+
|
|
1260
|
+
export declare const ActionTargetFilterSensitiveLog: (obj: ActionTarget) => any;
|
|
1261
|
+
|
|
1262
|
+
export declare const AppFilterSensitiveLog: (obj: App) => any;
|
|
1263
|
+
|
|
1264
|
+
export declare const AppsListDataFilterSensitiveLog: (obj: AppsListData) => any;
|
|
1265
|
+
|
|
1266
|
+
export declare const AppsListDataSummaryFilterSensitiveLog: (obj: AppsListDataSummary) => any;
|
|
1267
|
+
|
|
1268
|
+
export declare const AssociateAdminAccountRequestFilterSensitiveLog: (obj: AssociateAdminAccountRequest) => any;
|
|
1269
|
+
|
|
1270
|
+
export declare const AssociateThirdPartyFirewallRequestFilterSensitiveLog: (obj: AssociateThirdPartyFirewallRequest) => any;
|
|
1271
|
+
|
|
1272
|
+
export declare const AssociateThirdPartyFirewallResponseFilterSensitiveLog: (obj: AssociateThirdPartyFirewallResponse) => any;
|
|
1273
|
+
|
|
1274
|
+
export declare const AwsEc2NetworkInterfaceViolationFilterSensitiveLog: (obj: AwsEc2NetworkInterfaceViolation) => any;
|
|
1275
|
+
|
|
1276
|
+
export declare const AwsEc2InstanceViolationFilterSensitiveLog: (obj: AwsEc2InstanceViolation) => any;
|
|
1277
|
+
|
|
1278
|
+
export declare const DeleteAppsListRequestFilterSensitiveLog: (obj: DeleteAppsListRequest) => any;
|
|
1279
|
+
|
|
1280
|
+
export declare const DeleteNotificationChannelRequestFilterSensitiveLog: (obj: DeleteNotificationChannelRequest) => any;
|
|
1281
|
+
|
|
1282
|
+
export declare const DeletePolicyRequestFilterSensitiveLog: (obj: DeletePolicyRequest) => any;
|
|
1283
|
+
|
|
1284
|
+
export declare const DeleteProtocolsListRequestFilterSensitiveLog: (obj: DeleteProtocolsListRequest) => any;
|
|
1285
|
+
|
|
1286
|
+
export declare const DisassociateAdminAccountRequestFilterSensitiveLog: (obj: DisassociateAdminAccountRequest) => any;
|
|
1287
|
+
|
|
1288
|
+
export declare const DisassociateThirdPartyFirewallRequestFilterSensitiveLog: (obj: DisassociateThirdPartyFirewallRequest) => any;
|
|
1289
|
+
|
|
1290
|
+
export declare const DisassociateThirdPartyFirewallResponseFilterSensitiveLog: (obj: DisassociateThirdPartyFirewallResponse) => any;
|
|
1291
|
+
|
|
1292
|
+
export declare const GetAdminAccountRequestFilterSensitiveLog: (obj: GetAdminAccountRequest) => any;
|
|
1293
|
+
|
|
1294
|
+
export declare const GetAdminAccountResponseFilterSensitiveLog: (obj: GetAdminAccountResponse) => any;
|
|
1295
|
+
|
|
1296
|
+
export declare const GetAppsListRequestFilterSensitiveLog: (obj: GetAppsListRequest) => any;
|
|
1297
|
+
|
|
1298
|
+
export declare const GetAppsListResponseFilterSensitiveLog: (obj: GetAppsListResponse) => any;
|
|
1299
|
+
|
|
1300
|
+
export declare const GetComplianceDetailRequestFilterSensitiveLog: (obj: GetComplianceDetailRequest) => any;
|
|
1301
|
+
|
|
1302
|
+
export declare const ComplianceViolatorFilterSensitiveLog: (obj: ComplianceViolator) => any;
|
|
1303
|
+
|
|
1304
|
+
export declare const PolicyComplianceDetailFilterSensitiveLog: (obj: PolicyComplianceDetail) => any;
|
|
1305
|
+
|
|
1306
|
+
export declare const GetComplianceDetailResponseFilterSensitiveLog: (obj: GetComplianceDetailResponse) => any;
|
|
1307
|
+
|
|
1308
|
+
export declare const GetNotificationChannelRequestFilterSensitiveLog: (obj: GetNotificationChannelRequest) => any;
|
|
1309
|
+
|
|
1310
|
+
export declare const GetNotificationChannelResponseFilterSensitiveLog: (obj: GetNotificationChannelResponse) => any;
|
|
1311
|
+
|
|
1312
|
+
export declare const GetPolicyRequestFilterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
1313
|
+
|
|
1314
|
+
export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
|
|
1315
|
+
|
|
1316
|
+
export declare const NetworkFirewallPolicyFilterSensitiveLog: (obj: NetworkFirewallPolicy) => any;
|
|
1317
|
+
|
|
1318
|
+
export declare const ThirdPartyFirewallPolicyFilterSensitiveLog: (obj: ThirdPartyFirewallPolicy) => any;
|
|
1319
|
+
|
|
1320
|
+
export declare const PolicyOptionFilterSensitiveLog: (obj: PolicyOption) => any;
|
|
1321
|
+
|
|
1322
|
+
export declare const SecurityServicePolicyDataFilterSensitiveLog: (obj: SecurityServicePolicyData) => any;
|
|
1323
|
+
|
|
1324
|
+
export declare const PolicyFilterSensitiveLog: (obj: Policy) => any;
|
|
1325
|
+
|
|
1326
|
+
export declare const GetPolicyResponseFilterSensitiveLog: (obj: GetPolicyResponse) => any;
|
|
1327
|
+
|
|
1328
|
+
export declare const GetProtectionStatusRequestFilterSensitiveLog: (obj: GetProtectionStatusRequest) => any;
|
|
1329
|
+
|
|
1330
|
+
export declare const GetProtectionStatusResponseFilterSensitiveLog: (obj: GetProtectionStatusResponse) => any;
|
|
1331
|
+
|
|
1332
|
+
export declare const GetProtocolsListRequestFilterSensitiveLog: (obj: GetProtocolsListRequest) => any;
|
|
1333
|
+
|
|
1334
|
+
export declare const ProtocolsListDataFilterSensitiveLog: (obj: ProtocolsListData) => any;
|
|
1335
|
+
|
|
1336
|
+
export declare const GetProtocolsListResponseFilterSensitiveLog: (obj: GetProtocolsListResponse) => any;
|
|
1337
|
+
|
|
1338
|
+
export declare const GetThirdPartyFirewallAssociationStatusRequestFilterSensitiveLog: (obj: GetThirdPartyFirewallAssociationStatusRequest) => any;
|
|
1339
|
+
|
|
1340
|
+
export declare const GetThirdPartyFirewallAssociationStatusResponseFilterSensitiveLog: (obj: GetThirdPartyFirewallAssociationStatusResponse) => any;
|
|
1341
|
+
|
|
1342
|
+
export declare const GetViolationDetailsRequestFilterSensitiveLog: (obj: GetViolationDetailsRequest) => any;
|
|
1343
|
+
|
|
1344
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1345
|
+
|
|
1346
|
+
export declare const PartialMatchFilterSensitiveLog: (obj: PartialMatch) => any;
|
|
1347
|
+
|
|
1348
|
+
export declare const SecurityGroupRuleDescriptionFilterSensitiveLog: (obj: SecurityGroupRuleDescription) => any;
|
|
1349
|
+
|
|
1350
|
+
export declare const SecurityGroupRemediationActionFilterSensitiveLog: (obj: SecurityGroupRemediationAction) => any;
|
|
1351
|
+
|
|
1352
|
+
export declare const AwsVPCSecurityGroupViolationFilterSensitiveLog: (obj: AwsVPCSecurityGroupViolation) => any;
|
|
1353
|
+
|
|
1354
|
+
export declare const DnsDuplicateRuleGroupViolationFilterSensitiveLog: (obj: DnsDuplicateRuleGroupViolation) => any;
|
|
1355
|
+
|
|
1356
|
+
export declare const DnsRuleGroupLimitExceededViolationFilterSensitiveLog: (obj: DnsRuleGroupLimitExceededViolation) => any;
|
|
1357
|
+
|
|
1358
|
+
export declare const DnsRuleGroupPriorityConflictViolationFilterSensitiveLog: (obj: DnsRuleGroupPriorityConflictViolation) => any;
|
|
1359
|
+
|
|
1360
|
+
export declare const FirewallSubnetIsOutOfScopeViolationFilterSensitiveLog: (obj: FirewallSubnetIsOutOfScopeViolation) => any;
|
|
1361
|
+
|
|
1362
|
+
export declare const FirewallSubnetMissingVPCEndpointViolationFilterSensitiveLog: (obj: FirewallSubnetMissingVPCEndpointViolation) => any;
|
|
1363
|
+
|
|
1364
|
+
export declare const RouteFilterSensitiveLog: (obj: Route) => any;
|
|
1365
|
+
|
|
1366
|
+
export declare const NetworkFirewallBlackHoleRouteDetectedViolationFilterSensitiveLog: (obj: NetworkFirewallBlackHoleRouteDetectedViolation) => any;
|
|
1367
|
+
|
|
1368
|
+
export declare const ExpectedRouteFilterSensitiveLog: (obj: ExpectedRoute) => any;
|
|
1369
|
+
|
|
1370
|
+
export declare const NetworkFirewallInternetTrafficNotInspectedViolationFilterSensitiveLog: (obj: NetworkFirewallInternetTrafficNotInspectedViolation) => any;
|
|
1371
|
+
|
|
1372
|
+
export declare const NetworkFirewallInvalidRouteConfigurationViolationFilterSensitiveLog: (obj: NetworkFirewallInvalidRouteConfigurationViolation) => any;
|
|
1373
|
+
|
|
1374
|
+
export declare const NetworkFirewallMissingExpectedRoutesViolationFilterSensitiveLog: (obj: NetworkFirewallMissingExpectedRoutesViolation) => any;
|
|
1375
|
+
|
|
1376
|
+
export declare const NetworkFirewallMissingExpectedRTViolationFilterSensitiveLog: (obj: NetworkFirewallMissingExpectedRTViolation) => any;
|
|
1377
|
+
|
|
1378
|
+
export declare const NetworkFirewallMissingFirewallViolationFilterSensitiveLog: (obj: NetworkFirewallMissingFirewallViolation) => any;
|
|
1379
|
+
|
|
1380
|
+
export declare const NetworkFirewallMissingSubnetViolationFilterSensitiveLog: (obj: NetworkFirewallMissingSubnetViolation) => any;
|
|
1381
|
+
|
|
1382
|
+
export declare const StatefulEngineOptionsFilterSensitiveLog: (obj: StatefulEngineOptions) => any;
|
|
1383
|
+
|
|
1384
|
+
export declare const StatefulRuleGroupFilterSensitiveLog: (obj: StatefulRuleGroup) => any;
|
|
1385
|
+
|
|
1386
|
+
export declare const StatelessRuleGroupFilterSensitiveLog: (obj: StatelessRuleGroup) => any;
|
|
1387
|
+
|
|
1388
|
+
export declare const NetworkFirewallPolicyDescriptionFilterSensitiveLog: (obj: NetworkFirewallPolicyDescription) => any;
|
|
1389
|
+
|
|
1390
|
+
export declare const NetworkFirewallPolicyModifiedViolationFilterSensitiveLog: (obj: NetworkFirewallPolicyModifiedViolation) => any;
|
|
1391
|
+
|
|
1392
|
+
export declare const NetworkFirewallUnexpectedFirewallRoutesViolationFilterSensitiveLog: (obj: NetworkFirewallUnexpectedFirewallRoutesViolation) => any;
|
|
1393
|
+
|
|
1394
|
+
export declare const NetworkFirewallUnexpectedGatewayRoutesViolationFilterSensitiveLog: (obj: NetworkFirewallUnexpectedGatewayRoutesViolation) => any;
|
|
1395
|
+
|
|
1396
|
+
export declare const EC2AssociateRouteTableActionFilterSensitiveLog: (obj: EC2AssociateRouteTableAction) => any;
|
|
1397
|
+
|
|
1398
|
+
export declare const EC2CopyRouteTableActionFilterSensitiveLog: (obj: EC2CopyRouteTableAction) => any;
|
|
1399
|
+
|
|
1400
|
+
export declare const EC2CreateRouteActionFilterSensitiveLog: (obj: EC2CreateRouteAction) => any;
|
|
1401
|
+
|
|
1402
|
+
export declare const EC2CreateRouteTableActionFilterSensitiveLog: (obj: EC2CreateRouteTableAction) => any;
|
|
1403
|
+
|
|
1404
|
+
export declare const EC2DeleteRouteActionFilterSensitiveLog: (obj: EC2DeleteRouteAction) => any;
|
|
1405
|
+
|
|
1406
|
+
export declare const EC2ReplaceRouteActionFilterSensitiveLog: (obj: EC2ReplaceRouteAction) => any;
|
|
1407
|
+
|
|
1408
|
+
export declare const EC2ReplaceRouteTableAssociationActionFilterSensitiveLog: (obj: EC2ReplaceRouteTableAssociationAction) => any;
|
|
1409
|
+
|
|
1410
|
+
export declare const FMSPolicyUpdateFirewallCreationConfigActionFilterSensitiveLog: (obj: FMSPolicyUpdateFirewallCreationConfigAction) => any;
|
|
1411
|
+
|
|
1412
|
+
export declare const RemediationActionFilterSensitiveLog: (obj: RemediationAction) => any;
|
|
1413
|
+
|
|
1414
|
+
export declare const RemediationActionWithOrderFilterSensitiveLog: (obj: RemediationActionWithOrder) => any;
|
|
1415
|
+
|
|
1416
|
+
export declare const PossibleRemediationActionFilterSensitiveLog: (obj: PossibleRemediationAction) => any;
|
|
1417
|
+
|
|
1418
|
+
export declare const PossibleRemediationActionsFilterSensitiveLog: (obj: PossibleRemediationActions) => any;
|
|
1419
|
+
|
|
1420
|
+
export declare const RouteHasOutOfScopeEndpointViolationFilterSensitiveLog: (obj: RouteHasOutOfScopeEndpointViolation) => any;
|
|
1421
|
+
|
|
1422
|
+
export declare const ThirdPartyFirewallMissingExpectedRouteTableViolationFilterSensitiveLog: (obj: ThirdPartyFirewallMissingExpectedRouteTableViolation) => any;
|
|
1423
|
+
|
|
1424
|
+
export declare const ThirdPartyFirewallMissingFirewallViolationFilterSensitiveLog: (obj: ThirdPartyFirewallMissingFirewallViolation) => any;
|
|
1425
|
+
|
|
1426
|
+
export declare const ThirdPartyFirewallMissingSubnetViolationFilterSensitiveLog: (obj: ThirdPartyFirewallMissingSubnetViolation) => any;
|
|
1427
|
+
|
|
1428
|
+
export declare const ResourceViolationFilterSensitiveLog: (obj: ResourceViolation) => any;
|
|
1429
|
+
|
|
1430
|
+
export declare const ViolationDetailFilterSensitiveLog: (obj: ViolationDetail) => any;
|
|
1431
|
+
|
|
1432
|
+
export declare const GetViolationDetailsResponseFilterSensitiveLog: (obj: GetViolationDetailsResponse) => any;
|
|
1433
|
+
|
|
1434
|
+
export declare const ListAppsListsRequestFilterSensitiveLog: (obj: ListAppsListsRequest) => any;
|
|
1435
|
+
|
|
1436
|
+
export declare const ListAppsListsResponseFilterSensitiveLog: (obj: ListAppsListsResponse) => any;
|
|
1437
|
+
|
|
1438
|
+
export declare const ListComplianceStatusRequestFilterSensitiveLog: (obj: ListComplianceStatusRequest) => any;
|
|
1439
|
+
|
|
1440
|
+
export declare const EvaluationResultFilterSensitiveLog: (obj: EvaluationResult) => any;
|
|
1441
|
+
|
|
1442
|
+
export declare const PolicyComplianceStatusFilterSensitiveLog: (obj: PolicyComplianceStatus) => any;
|
|
1443
|
+
|
|
1444
|
+
export declare const ListComplianceStatusResponseFilterSensitiveLog: (obj: ListComplianceStatusResponse) => any;
|
|
1445
|
+
|
|
1446
|
+
export declare const ListMemberAccountsRequestFilterSensitiveLog: (obj: ListMemberAccountsRequest) => any;
|
|
1447
|
+
|
|
1448
|
+
export declare const ListMemberAccountsResponseFilterSensitiveLog: (obj: ListMemberAccountsResponse) => any;
|
|
1449
|
+
|
|
1450
|
+
export declare const ListPoliciesRequestFilterSensitiveLog: (obj: ListPoliciesRequest) => any;
|
|
1451
|
+
|
|
1452
|
+
export declare const PolicySummaryFilterSensitiveLog: (obj: PolicySummary) => any;
|
|
1453
|
+
|
|
1454
|
+
export declare const ListPoliciesResponseFilterSensitiveLog: (obj: ListPoliciesResponse) => any;
|
|
1455
|
+
|
|
1456
|
+
export declare const ListProtocolsListsRequestFilterSensitiveLog: (obj: ListProtocolsListsRequest) => any;
|
|
1457
|
+
|
|
1458
|
+
export declare const ProtocolsListDataSummaryFilterSensitiveLog: (obj: ProtocolsListDataSummary) => any;
|
|
1459
|
+
|
|
1460
|
+
export declare const ListProtocolsListsResponseFilterSensitiveLog: (obj: ListProtocolsListsResponse) => any;
|
|
1461
|
+
|
|
1462
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1463
|
+
|
|
1464
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1465
|
+
|
|
1466
|
+
export declare const ListThirdPartyFirewallFirewallPoliciesRequestFilterSensitiveLog: (obj: ListThirdPartyFirewallFirewallPoliciesRequest) => any;
|
|
1467
|
+
|
|
1468
|
+
export declare const ThirdPartyFirewallFirewallPolicyFilterSensitiveLog: (obj: ThirdPartyFirewallFirewallPolicy) => any;
|
|
1469
|
+
|
|
1470
|
+
export declare const ListThirdPartyFirewallFirewallPoliciesResponseFilterSensitiveLog: (obj: ListThirdPartyFirewallFirewallPoliciesResponse) => any;
|
|
1471
|
+
|
|
1472
|
+
export declare const PutAppsListRequestFilterSensitiveLog: (obj: PutAppsListRequest) => any;
|
|
1473
|
+
|
|
1474
|
+
export declare const PutAppsListResponseFilterSensitiveLog: (obj: PutAppsListResponse) => any;
|
|
1475
|
+
|
|
1476
|
+
export declare const PutNotificationChannelRequestFilterSensitiveLog: (obj: PutNotificationChannelRequest) => any;
|
|
1477
|
+
|
|
1478
|
+
export declare const PutPolicyRequestFilterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
1479
|
+
|
|
1480
|
+
export declare const PutPolicyResponseFilterSensitiveLog: (obj: PutPolicyResponse) => any;
|
|
1481
|
+
|
|
1482
|
+
export declare const PutProtocolsListRequestFilterSensitiveLog: (obj: PutProtocolsListRequest) => any;
|
|
1483
|
+
|
|
1484
|
+
export declare const PutProtocolsListResponseFilterSensitiveLog: (obj: PutProtocolsListResponse) => any;
|
|
1485
|
+
|
|
1486
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1487
|
+
|
|
1488
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1489
|
+
|
|
1490
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1491
|
+
|
|
1492
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|