@aws-sdk/client-fms 3.687.0 → 3.691.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.
@@ -10,13 +10,13 @@ export declare const AccountRoleStatus: {
10
10
  export type AccountRoleStatus =
11
11
  (typeof AccountRoleStatus)[keyof typeof AccountRoleStatus];
12
12
  export interface AccountScope {
13
- Accounts?: string[];
14
- AllAccountsEnabled?: boolean;
15
- ExcludeSpecifiedAccounts?: boolean;
13
+ Accounts?: string[] | undefined;
14
+ AllAccountsEnabled?: boolean | undefined;
15
+ ExcludeSpecifiedAccounts?: boolean | undefined;
16
16
  }
17
17
  export interface ActionTarget {
18
- ResourceId?: string;
19
- Description?: string;
18
+ ResourceId?: string | undefined;
19
+ Description?: string | undefined;
20
20
  }
21
21
  export declare const OrganizationStatus: {
22
22
  readonly Offboarding: "OFFBOARDING";
@@ -27,14 +27,14 @@ export declare const OrganizationStatus: {
27
27
  export type OrganizationStatus =
28
28
  (typeof OrganizationStatus)[keyof typeof OrganizationStatus];
29
29
  export interface AdminAccountSummary {
30
- AdminAccount?: string;
31
- DefaultAdmin?: boolean;
32
- Status?: OrganizationStatus;
30
+ AdminAccount?: string | undefined;
31
+ DefaultAdmin?: boolean | undefined;
32
+ Status?: OrganizationStatus | undefined;
33
33
  }
34
34
  export interface OrganizationalUnitScope {
35
- OrganizationalUnits?: string[];
36
- AllOrganizationalUnitsEnabled?: boolean;
37
- ExcludeSpecifiedOrganizationalUnits?: boolean;
35
+ OrganizationalUnits?: string[] | undefined;
36
+ AllOrganizationalUnitsEnabled?: boolean | undefined;
37
+ ExcludeSpecifiedOrganizationalUnits?: boolean | undefined;
38
38
  }
39
39
  export declare const SecurityServiceType: {
40
40
  readonly DNS_FIREWALL: "DNS_FIREWALL";
@@ -52,18 +52,18 @@ export declare const SecurityServiceType: {
52
52
  export type SecurityServiceType =
53
53
  (typeof SecurityServiceType)[keyof typeof SecurityServiceType];
54
54
  export interface PolicyTypeScope {
55
- PolicyTypes?: SecurityServiceType[];
56
- AllPolicyTypesEnabled?: boolean;
55
+ PolicyTypes?: SecurityServiceType[] | undefined;
56
+ AllPolicyTypesEnabled?: boolean | undefined;
57
57
  }
58
58
  export interface RegionScope {
59
- Regions?: string[];
60
- AllRegionsEnabled?: boolean;
59
+ Regions?: string[] | undefined;
60
+ AllRegionsEnabled?: boolean | undefined;
61
61
  }
62
62
  export interface AdminScope {
63
- AccountScope?: AccountScope;
64
- OrganizationalUnitScope?: OrganizationalUnitScope;
65
- RegionScope?: RegionScope;
66
- PolicyTypeScope?: PolicyTypeScope;
63
+ AccountScope?: AccountScope | undefined;
64
+ OrganizationalUnitScope?: OrganizationalUnitScope | undefined;
65
+ RegionScope?: RegionScope | undefined;
66
+ PolicyTypeScope?: PolicyTypeScope | undefined;
67
67
  }
68
68
  export interface App {
69
69
  AppName: string | undefined;
@@ -71,19 +71,19 @@ export interface App {
71
71
  Port: number | undefined;
72
72
  }
73
73
  export interface AppsListData {
74
- ListId?: string;
74
+ ListId?: string | undefined;
75
75
  ListName: string | undefined;
76
- ListUpdateToken?: string;
77
- CreateTime?: Date;
78
- LastUpdateTime?: Date;
76
+ ListUpdateToken?: string | undefined;
77
+ CreateTime?: Date | undefined;
78
+ LastUpdateTime?: Date | undefined;
79
79
  AppsList: App[] | undefined;
80
- PreviousAppsList?: Record<string, App[]>;
80
+ PreviousAppsList?: Record<string, App[]> | undefined;
81
81
  }
82
82
  export interface AppsListDataSummary {
83
- ListArn?: string;
84
- ListId?: string;
85
- ListName?: string;
86
- AppsList?: App[];
83
+ ListArn?: string | undefined;
84
+ ListId?: string | undefined;
85
+ ListName?: string | undefined;
86
+ AppsList?: App[] | undefined;
87
87
  }
88
88
  export interface AssociateAdminAccountRequest {
89
89
  AdminAccount: string | undefined;
@@ -91,7 +91,7 @@ export interface AssociateAdminAccountRequest {
91
91
  export declare class InternalErrorException extends __BaseException {
92
92
  readonly name: "InternalErrorException";
93
93
  readonly $fault: "client";
94
- Message?: string;
94
+ Message?: string | undefined;
95
95
  constructor(
96
96
  opts: __ExceptionOptionType<InternalErrorException, __BaseException>
97
97
  );
@@ -99,7 +99,7 @@ export declare class InternalErrorException extends __BaseException {
99
99
  export declare class InvalidInputException extends __BaseException {
100
100
  readonly name: "InvalidInputException";
101
101
  readonly $fault: "client";
102
- Message?: string;
102
+ Message?: string | undefined;
103
103
  constructor(
104
104
  opts: __ExceptionOptionType<InvalidInputException, __BaseException>
105
105
  );
@@ -107,7 +107,7 @@ export declare class InvalidInputException extends __BaseException {
107
107
  export declare class InvalidOperationException extends __BaseException {
108
108
  readonly name: "InvalidOperationException";
109
109
  readonly $fault: "client";
110
- Message?: string;
110
+ Message?: string | undefined;
111
111
  constructor(
112
112
  opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
113
113
  );
@@ -115,7 +115,7 @@ export declare class InvalidOperationException extends __BaseException {
115
115
  export declare class LimitExceededException extends __BaseException {
116
116
  readonly name: "LimitExceededException";
117
117
  readonly $fault: "client";
118
- Message?: string;
118
+ Message?: string | undefined;
119
119
  constructor(
120
120
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
121
121
  );
@@ -123,7 +123,7 @@ export declare class LimitExceededException extends __BaseException {
123
123
  export declare class ResourceNotFoundException extends __BaseException {
124
124
  readonly name: "ResourceNotFoundException";
125
125
  readonly $fault: "client";
126
- Message?: string;
126
+ Message?: string | undefined;
127
127
  constructor(
128
128
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
129
129
  );
@@ -147,15 +147,17 @@ export declare const ThirdPartyFirewallAssociationStatus: {
147
147
  export type ThirdPartyFirewallAssociationStatus =
148
148
  (typeof ThirdPartyFirewallAssociationStatus)[keyof typeof ThirdPartyFirewallAssociationStatus];
149
149
  export interface AssociateThirdPartyFirewallResponse {
150
- ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
150
+ ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | undefined;
151
151
  }
152
152
  export interface AwsEc2NetworkInterfaceViolation {
153
- ViolationTarget?: string;
154
- ViolatingSecurityGroups?: string[];
153
+ ViolationTarget?: string | undefined;
154
+ ViolatingSecurityGroups?: string[] | undefined;
155
155
  }
156
156
  export interface AwsEc2InstanceViolation {
157
- ViolationTarget?: string;
158
- AwsEc2NetworkInterfaceViolations?: AwsEc2NetworkInterfaceViolation[];
157
+ ViolationTarget?: string | undefined;
158
+ AwsEc2NetworkInterfaceViolations?:
159
+ | AwsEc2NetworkInterfaceViolation[]
160
+ | undefined;
159
161
  }
160
162
  export interface BatchAssociateResourceRequest {
161
163
  ResourceSetIdentifier: string | undefined;
@@ -172,8 +174,8 @@ export declare const FailedItemReason: {
172
174
  export type FailedItemReason =
173
175
  (typeof FailedItemReason)[keyof typeof FailedItemReason];
174
176
  export interface FailedItem {
175
- URI?: string;
176
- Reason?: FailedItemReason;
177
+ URI?: string | undefined;
178
+ Reason?: FailedItemReason | undefined;
177
179
  }
178
180
  export interface BatchAssociateResourceResponse {
179
181
  ResourceSetIdentifier: string | undefined;
@@ -193,7 +195,7 @@ export interface DeleteAppsListRequest {
193
195
  export interface DeleteNotificationChannelRequest {}
194
196
  export interface DeletePolicyRequest {
195
197
  PolicyId: string | undefined;
196
- DeleteAllPolicyResources?: boolean;
198
+ DeleteAllPolicyResources?: boolean | undefined;
197
199
  }
198
200
  export interface DeleteProtocolsListRequest {
199
201
  ListId: string | undefined;
@@ -206,27 +208,27 @@ export interface DisassociateThirdPartyFirewallRequest {
206
208
  ThirdPartyFirewall: ThirdPartyFirewall | undefined;
207
209
  }
208
210
  export interface DisassociateThirdPartyFirewallResponse {
209
- ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
211
+ ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | undefined;
210
212
  }
211
213
  export interface GetAdminAccountRequest {}
212
214
  export interface GetAdminAccountResponse {
213
- AdminAccount?: string;
214
- RoleStatus?: AccountRoleStatus;
215
+ AdminAccount?: string | undefined;
216
+ RoleStatus?: AccountRoleStatus | undefined;
215
217
  }
216
218
  export interface GetAdminScopeRequest {
217
219
  AdminAccount: string | undefined;
218
220
  }
219
221
  export interface GetAdminScopeResponse {
220
- AdminScope?: AdminScope;
221
- Status?: OrganizationStatus;
222
+ AdminScope?: AdminScope | undefined;
223
+ Status?: OrganizationStatus | undefined;
222
224
  }
223
225
  export interface GetAppsListRequest {
224
226
  ListId: string | undefined;
225
- DefaultList?: boolean;
227
+ DefaultList?: boolean | undefined;
226
228
  }
227
229
  export interface GetAppsListResponse {
228
- AppsList?: AppsListData;
229
- AppsListArn?: string;
230
+ AppsList?: AppsListData | undefined;
231
+ AppsListArn?: string | undefined;
230
232
  }
231
233
  export interface GetComplianceDetailRequest {
232
234
  PolicyId: string | undefined;
@@ -275,27 +277,27 @@ export declare const ViolationReason: {
275
277
  export type ViolationReason =
276
278
  (typeof ViolationReason)[keyof typeof ViolationReason];
277
279
  export interface ComplianceViolator {
278
- ResourceId?: string;
279
- ViolationReason?: ViolationReason;
280
- ResourceType?: string;
281
- Metadata?: Record<string, string>;
280
+ ResourceId?: string | undefined;
281
+ ViolationReason?: ViolationReason | undefined;
282
+ ResourceType?: string | undefined;
283
+ Metadata?: Record<string, string> | undefined;
282
284
  }
283
285
  export interface PolicyComplianceDetail {
284
- PolicyOwner?: string;
285
- PolicyId?: string;
286
- MemberAccount?: string;
287
- Violators?: ComplianceViolator[];
288
- EvaluationLimitExceeded?: boolean;
289
- ExpiredAt?: Date;
290
- IssueInfoMap?: Partial<Record<DependentServiceName, string>>;
286
+ PolicyOwner?: string | undefined;
287
+ PolicyId?: string | undefined;
288
+ MemberAccount?: string | undefined;
289
+ Violators?: ComplianceViolator[] | undefined;
290
+ EvaluationLimitExceeded?: boolean | undefined;
291
+ ExpiredAt?: Date | undefined;
292
+ IssueInfoMap?: Partial<Record<DependentServiceName, string>> | undefined;
291
293
  }
292
294
  export interface GetComplianceDetailResponse {
293
- PolicyComplianceDetail?: PolicyComplianceDetail;
295
+ PolicyComplianceDetail?: PolicyComplianceDetail | undefined;
294
296
  }
295
297
  export interface GetNotificationChannelRequest {}
296
298
  export interface GetNotificationChannelResponse {
297
- SnsTopicArn?: string;
298
- SnsRoleName?: string;
299
+ SnsTopicArn?: string | undefined;
300
+ SnsRoleName?: string | undefined;
299
301
  }
300
302
  export interface GetPolicyRequest {
301
303
  PolicyId: string | undefined;
@@ -314,15 +316,15 @@ export type CustomerPolicyStatus =
314
316
  (typeof CustomerPolicyStatus)[keyof typeof CustomerPolicyStatus];
315
317
  export interface ResourceTag {
316
318
  Key: string | undefined;
317
- Value?: string;
319
+ Value?: string | undefined;
318
320
  }
319
321
  export interface NetworkAclIcmpTypeCode {
320
- Code?: number;
321
- Type?: number;
322
+ Code?: number | undefined;
323
+ Type?: number | undefined;
322
324
  }
323
325
  export interface NetworkAclPortRange {
324
- From?: number;
325
- To?: number;
326
+ From?: number | undefined;
327
+ To?: number | undefined;
326
328
  }
327
329
  export declare const NetworkAclRuleAction: {
328
330
  readonly ALLOW: "allow";
@@ -331,18 +333,18 @@ export declare const NetworkAclRuleAction: {
331
333
  export type NetworkAclRuleAction =
332
334
  (typeof NetworkAclRuleAction)[keyof typeof NetworkAclRuleAction];
333
335
  export interface NetworkAclEntry {
334
- IcmpTypeCode?: NetworkAclIcmpTypeCode;
336
+ IcmpTypeCode?: NetworkAclIcmpTypeCode | undefined;
335
337
  Protocol: string | undefined;
336
- PortRange?: NetworkAclPortRange;
337
- CidrBlock?: string;
338
- Ipv6CidrBlock?: string;
338
+ PortRange?: NetworkAclPortRange | undefined;
339
+ CidrBlock?: string | undefined;
340
+ Ipv6CidrBlock?: string | undefined;
339
341
  RuleAction: NetworkAclRuleAction | undefined;
340
342
  Egress: boolean | undefined;
341
343
  }
342
344
  export interface NetworkAclEntrySet {
343
- FirstEntries?: NetworkAclEntry[];
345
+ FirstEntries?: NetworkAclEntry[] | undefined;
344
346
  ForceRemediateForFirstEntries: boolean | undefined;
345
- LastEntries?: NetworkAclEntry[];
347
+ LastEntries?: NetworkAclEntry[] | undefined;
346
348
  ForceRemediateForLastEntries: boolean | undefined;
347
349
  }
348
350
  export interface NetworkAclCommonPolicy {
@@ -355,80 +357,80 @@ export declare const FirewallDeploymentModel: {
355
357
  export type FirewallDeploymentModel =
356
358
  (typeof FirewallDeploymentModel)[keyof typeof FirewallDeploymentModel];
357
359
  export interface NetworkFirewallPolicy {
358
- FirewallDeploymentModel?: FirewallDeploymentModel;
360
+ FirewallDeploymentModel?: FirewallDeploymentModel | undefined;
359
361
  }
360
362
  export interface ThirdPartyFirewallPolicy {
361
- FirewallDeploymentModel?: FirewallDeploymentModel;
363
+ FirewallDeploymentModel?: FirewallDeploymentModel | undefined;
362
364
  }
363
365
  export interface PolicyOption {
364
- NetworkFirewallPolicy?: NetworkFirewallPolicy;
365
- ThirdPartyFirewallPolicy?: ThirdPartyFirewallPolicy;
366
- NetworkAclCommonPolicy?: NetworkAclCommonPolicy;
366
+ NetworkFirewallPolicy?: NetworkFirewallPolicy | undefined;
367
+ ThirdPartyFirewallPolicy?: ThirdPartyFirewallPolicy | undefined;
368
+ NetworkAclCommonPolicy?: NetworkAclCommonPolicy | undefined;
367
369
  }
368
370
  export interface SecurityServicePolicyData {
369
371
  Type: SecurityServiceType | undefined;
370
- ManagedServiceData?: string;
371
- PolicyOption?: PolicyOption;
372
+ ManagedServiceData?: string | undefined;
373
+ PolicyOption?: PolicyOption | undefined;
372
374
  }
373
375
  export interface Policy {
374
- PolicyId?: string;
376
+ PolicyId?: string | undefined;
375
377
  PolicyName: string | undefined;
376
- PolicyUpdateToken?: string;
378
+ PolicyUpdateToken?: string | undefined;
377
379
  SecurityServicePolicyData: SecurityServicePolicyData | undefined;
378
380
  ResourceType: string | undefined;
379
- ResourceTypeList?: string[];
380
- ResourceTags?: ResourceTag[];
381
+ ResourceTypeList?: string[] | undefined;
382
+ ResourceTags?: ResourceTag[] | undefined;
381
383
  ExcludeResourceTags: boolean | undefined;
382
384
  RemediationEnabled: boolean | undefined;
383
- DeleteUnusedFMManagedResources?: boolean;
384
- IncludeMap?: Partial<Record<CustomerPolicyScopeIdType, string[]>>;
385
- ExcludeMap?: Partial<Record<CustomerPolicyScopeIdType, string[]>>;
386
- ResourceSetIds?: string[];
387
- PolicyDescription?: string;
388
- PolicyStatus?: CustomerPolicyStatus;
385
+ DeleteUnusedFMManagedResources?: boolean | undefined;
386
+ IncludeMap?: Partial<Record<CustomerPolicyScopeIdType, string[]>> | undefined;
387
+ ExcludeMap?: Partial<Record<CustomerPolicyScopeIdType, string[]>> | undefined;
388
+ ResourceSetIds?: string[] | undefined;
389
+ PolicyDescription?: string | undefined;
390
+ PolicyStatus?: CustomerPolicyStatus | undefined;
389
391
  }
390
392
  export interface GetPolicyResponse {
391
- Policy?: Policy;
392
- PolicyArn?: string;
393
+ Policy?: Policy | undefined;
394
+ PolicyArn?: string | undefined;
393
395
  }
394
396
  export declare class InvalidTypeException extends __BaseException {
395
397
  readonly name: "InvalidTypeException";
396
398
  readonly $fault: "client";
397
- Message?: string;
399
+ Message?: string | undefined;
398
400
  constructor(
399
401
  opts: __ExceptionOptionType<InvalidTypeException, __BaseException>
400
402
  );
401
403
  }
402
404
  export interface GetProtectionStatusRequest {
403
405
  PolicyId: string | undefined;
404
- MemberAccountId?: string;
405
- StartTime?: Date;
406
- EndTime?: Date;
407
- NextToken?: string;
408
- MaxResults?: number;
406
+ MemberAccountId?: string | undefined;
407
+ StartTime?: Date | undefined;
408
+ EndTime?: Date | undefined;
409
+ NextToken?: string | undefined;
410
+ MaxResults?: number | undefined;
409
411
  }
410
412
  export interface GetProtectionStatusResponse {
411
- AdminAccountId?: string;
412
- ServiceType?: SecurityServiceType;
413
- Data?: string;
414
- NextToken?: string;
413
+ AdminAccountId?: string | undefined;
414
+ ServiceType?: SecurityServiceType | undefined;
415
+ Data?: string | undefined;
416
+ NextToken?: string | undefined;
415
417
  }
416
418
  export interface GetProtocolsListRequest {
417
419
  ListId: string | undefined;
418
- DefaultList?: boolean;
420
+ DefaultList?: boolean | undefined;
419
421
  }
420
422
  export interface ProtocolsListData {
421
- ListId?: string;
423
+ ListId?: string | undefined;
422
424
  ListName: string | undefined;
423
- ListUpdateToken?: string;
424
- CreateTime?: Date;
425
- LastUpdateTime?: Date;
425
+ ListUpdateToken?: string | undefined;
426
+ CreateTime?: Date | undefined;
427
+ LastUpdateTime?: Date | undefined;
426
428
  ProtocolsList: string[] | undefined;
427
- PreviousProtocolsList?: Record<string, string[]>;
429
+ PreviousProtocolsList?: Record<string, string[]> | undefined;
428
430
  }
429
431
  export interface GetProtocolsListResponse {
430
- ProtocolsList?: ProtocolsListData;
431
- ProtocolsListArn?: string;
432
+ ProtocolsList?: ProtocolsListData | undefined;
433
+ ProtocolsListArn?: string | undefined;
432
434
  }
433
435
  export interface GetResourceSetRequest {
434
436
  Identifier: string | undefined;
@@ -440,13 +442,13 @@ export declare const ResourceSetStatus: {
440
442
  export type ResourceSetStatus =
441
443
  (typeof ResourceSetStatus)[keyof typeof ResourceSetStatus];
442
444
  export interface ResourceSet {
443
- Id?: string;
445
+ Id?: string | undefined;
444
446
  Name: string | undefined;
445
- Description?: string;
446
- UpdateToken?: string;
447
+ Description?: string | undefined;
448
+ UpdateToken?: string | undefined;
447
449
  ResourceTypeList: string[] | undefined;
448
- LastUpdateTime?: Date;
449
- ResourceSetStatus?: ResourceSetStatus;
450
+ LastUpdateTime?: Date | undefined;
451
+ ResourceSetStatus?: ResourceSetStatus | undefined;
450
452
  }
451
453
  export interface GetResourceSetResponse {
452
454
  ResourceSet: ResourceSet | undefined;
@@ -463,8 +465,10 @@ export declare const MarketplaceSubscriptionOnboardingStatus: {
463
465
  export type MarketplaceSubscriptionOnboardingStatus =
464
466
  (typeof MarketplaceSubscriptionOnboardingStatus)[keyof typeof MarketplaceSubscriptionOnboardingStatus];
465
467
  export interface GetThirdPartyFirewallAssociationStatusResponse {
466
- ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
467
- MarketplaceOnboardingStatus?: MarketplaceSubscriptionOnboardingStatus;
468
+ ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | undefined;
469
+ MarketplaceOnboardingStatus?:
470
+ | MarketplaceSubscriptionOnboardingStatus
471
+ | undefined;
468
472
  }
469
473
  export interface GetViolationDetailsRequest {
470
474
  PolicyId: string | undefined;
@@ -477,8 +481,8 @@ export interface Tag {
477
481
  Value: string | undefined;
478
482
  }
479
483
  export interface PartialMatch {
480
- Reference?: string;
481
- TargetViolationReasons?: string[];
484
+ Reference?: string | undefined;
485
+ TargetViolationReasons?: string[] | undefined;
482
486
  }
483
487
  export declare const RemediationActionType: {
484
488
  readonly Modify: "MODIFY";
@@ -487,53 +491,55 @@ export declare const RemediationActionType: {
487
491
  export type RemediationActionType =
488
492
  (typeof RemediationActionType)[keyof typeof RemediationActionType];
489
493
  export interface SecurityGroupRuleDescription {
490
- IPV4Range?: string;
491
- IPV6Range?: string;
492
- PrefixListId?: string;
493
- Protocol?: string;
494
- FromPort?: number;
495
- ToPort?: number;
494
+ IPV4Range?: string | undefined;
495
+ IPV6Range?: string | undefined;
496
+ PrefixListId?: string | undefined;
497
+ Protocol?: string | undefined;
498
+ FromPort?: number | undefined;
499
+ ToPort?: number | undefined;
496
500
  }
497
501
  export interface SecurityGroupRemediationAction {
498
- RemediationActionType?: RemediationActionType;
499
- Description?: string;
500
- RemediationResult?: SecurityGroupRuleDescription;
501
- IsDefaultAction?: boolean;
502
+ RemediationActionType?: RemediationActionType | undefined;
503
+ Description?: string | undefined;
504
+ RemediationResult?: SecurityGroupRuleDescription | undefined;
505
+ IsDefaultAction?: boolean | undefined;
502
506
  }
503
507
  export interface AwsVPCSecurityGroupViolation {
504
- ViolationTarget?: string;
505
- ViolationTargetDescription?: string;
506
- PartialMatches?: PartialMatch[];
507
- PossibleSecurityGroupRemediationActions?: SecurityGroupRemediationAction[];
508
+ ViolationTarget?: string | undefined;
509
+ ViolationTargetDescription?: string | undefined;
510
+ PartialMatches?: PartialMatch[] | undefined;
511
+ PossibleSecurityGroupRemediationActions?:
512
+ | SecurityGroupRemediationAction[]
513
+ | undefined;
508
514
  }
509
515
  export interface DnsDuplicateRuleGroupViolation {
510
- ViolationTarget?: string;
511
- ViolationTargetDescription?: string;
516
+ ViolationTarget?: string | undefined;
517
+ ViolationTargetDescription?: string | undefined;
512
518
  }
513
519
  export interface DnsRuleGroupLimitExceededViolation {
514
- ViolationTarget?: string;
515
- ViolationTargetDescription?: string;
516
- NumberOfRuleGroupsAlreadyAssociated?: number;
520
+ ViolationTarget?: string | undefined;
521
+ ViolationTargetDescription?: string | undefined;
522
+ NumberOfRuleGroupsAlreadyAssociated?: number | undefined;
517
523
  }
518
524
  export interface DnsRuleGroupPriorityConflictViolation {
519
- ViolationTarget?: string;
520
- ViolationTargetDescription?: string;
521
- ConflictingPriority?: number;
522
- ConflictingPolicyId?: string;
523
- UnavailablePriorities?: number[];
525
+ ViolationTarget?: string | undefined;
526
+ ViolationTargetDescription?: string | undefined;
527
+ ConflictingPriority?: number | undefined;
528
+ ConflictingPolicyId?: string | undefined;
529
+ UnavailablePriorities?: number[] | undefined;
524
530
  }
525
531
  export interface FirewallSubnetIsOutOfScopeViolation {
526
- FirewallSubnetId?: string;
527
- VpcId?: string;
528
- SubnetAvailabilityZone?: string;
529
- SubnetAvailabilityZoneId?: string;
530
- VpcEndpointId?: string;
532
+ FirewallSubnetId?: string | undefined;
533
+ VpcId?: string | undefined;
534
+ SubnetAvailabilityZone?: string | undefined;
535
+ SubnetAvailabilityZoneId?: string | undefined;
536
+ VpcEndpointId?: string | undefined;
531
537
  }
532
538
  export interface FirewallSubnetMissingVPCEndpointViolation {
533
- FirewallSubnetId?: string;
534
- VpcId?: string;
535
- SubnetAvailabilityZone?: string;
536
- SubnetAvailabilityZoneId?: string;
539
+ FirewallSubnetId?: string | undefined;
540
+ VpcId?: string | undefined;
541
+ SubnetAvailabilityZone?: string | undefined;
542
+ SubnetAvailabilityZoneId?: string | undefined;
537
543
  }
538
544
  export declare const EntryType: {
539
545
  readonly CustomEntry: "CUSTOM_ENTRY";
@@ -542,9 +548,9 @@ export declare const EntryType: {
542
548
  };
543
549
  export type EntryType = (typeof EntryType)[keyof typeof EntryType];
544
550
  export interface EntryDescription {
545
- EntryDetail?: NetworkAclEntry;
546
- EntryRuleNumber?: number;
547
- EntryType?: EntryType;
551
+ EntryDetail?: NetworkAclEntry | undefined;
552
+ EntryRuleNumber?: number | undefined;
553
+ EntryType?: EntryType | undefined;
548
554
  }
549
555
  export declare const EntryViolationReason: {
550
556
  readonly EntryConflict: "ENTRY_CONFLICT";
@@ -554,19 +560,19 @@ export declare const EntryViolationReason: {
554
560
  export type EntryViolationReason =
555
561
  (typeof EntryViolationReason)[keyof typeof EntryViolationReason];
556
562
  export interface EntryViolation {
557
- ExpectedEntry?: EntryDescription;
558
- ExpectedEvaluationOrder?: string;
559
- ActualEvaluationOrder?: string;
560
- EntryAtExpectedEvaluationOrder?: EntryDescription;
561
- EntriesWithConflicts?: EntryDescription[];
562
- EntryViolationReasons?: EntryViolationReason[];
563
+ ExpectedEntry?: EntryDescription | undefined;
564
+ ExpectedEvaluationOrder?: string | undefined;
565
+ ActualEvaluationOrder?: string | undefined;
566
+ EntryAtExpectedEvaluationOrder?: EntryDescription | undefined;
567
+ EntriesWithConflicts?: EntryDescription[] | undefined;
568
+ EntryViolationReasons?: EntryViolationReason[] | undefined;
563
569
  }
564
570
  export interface InvalidNetworkAclEntriesViolation {
565
- Vpc?: string;
566
- Subnet?: string;
567
- SubnetAvailabilityZone?: string;
568
- CurrentAssociatedNetworkAcl?: string;
569
- EntryViolations?: EntryViolation[];
571
+ Vpc?: string | undefined;
572
+ Subnet?: string | undefined;
573
+ SubnetAvailabilityZone?: string | undefined;
574
+ CurrentAssociatedNetworkAcl?: string | undefined;
575
+ EntryViolations?: EntryViolation[] | undefined;
570
576
  }
571
577
  export declare const DestinationType: {
572
578
  readonly IPV4: "IPV4";
@@ -589,83 +595,83 @@ export declare const TargetType: {
589
595
  };
590
596
  export type TargetType = (typeof TargetType)[keyof typeof TargetType];
591
597
  export interface Route {
592
- DestinationType?: DestinationType;
593
- TargetType?: TargetType;
594
- Destination?: string;
595
- Target?: string;
598
+ DestinationType?: DestinationType | undefined;
599
+ TargetType?: TargetType | undefined;
600
+ Destination?: string | undefined;
601
+ Target?: string | undefined;
596
602
  }
597
603
  export interface NetworkFirewallBlackHoleRouteDetectedViolation {
598
- ViolationTarget?: string;
599
- RouteTableId?: string;
600
- VpcId?: string;
601
- ViolatingRoutes?: Route[];
604
+ ViolationTarget?: string | undefined;
605
+ RouteTableId?: string | undefined;
606
+ VpcId?: string | undefined;
607
+ ViolatingRoutes?: Route[] | undefined;
602
608
  }
603
609
  export interface ExpectedRoute {
604
- IpV4Cidr?: string;
605
- PrefixListId?: string;
606
- IpV6Cidr?: string;
607
- ContributingSubnets?: string[];
608
- AllowedTargets?: string[];
609
- RouteTableId?: string;
610
+ IpV4Cidr?: string | undefined;
611
+ PrefixListId?: string | undefined;
612
+ IpV6Cidr?: string | undefined;
613
+ ContributingSubnets?: string[] | undefined;
614
+ AllowedTargets?: string[] | undefined;
615
+ RouteTableId?: string | undefined;
610
616
  }
611
617
  export interface NetworkFirewallInternetTrafficNotInspectedViolation {
612
- SubnetId?: string;
613
- SubnetAvailabilityZone?: string;
614
- RouteTableId?: string;
615
- ViolatingRoutes?: Route[];
616
- IsRouteTableUsedInDifferentAZ?: boolean;
617
- CurrentFirewallSubnetRouteTable?: string;
618
- ExpectedFirewallEndpoint?: string;
619
- FirewallSubnetId?: string;
620
- ExpectedFirewallSubnetRoutes?: ExpectedRoute[];
621
- ActualFirewallSubnetRoutes?: Route[];
622
- InternetGatewayId?: string;
623
- CurrentInternetGatewayRouteTable?: string;
624
- ExpectedInternetGatewayRoutes?: ExpectedRoute[];
625
- ActualInternetGatewayRoutes?: Route[];
626
- VpcId?: string;
618
+ SubnetId?: string | undefined;
619
+ SubnetAvailabilityZone?: string | undefined;
620
+ RouteTableId?: string | undefined;
621
+ ViolatingRoutes?: Route[] | undefined;
622
+ IsRouteTableUsedInDifferentAZ?: boolean | undefined;
623
+ CurrentFirewallSubnetRouteTable?: string | undefined;
624
+ ExpectedFirewallEndpoint?: string | undefined;
625
+ FirewallSubnetId?: string | undefined;
626
+ ExpectedFirewallSubnetRoutes?: ExpectedRoute[] | undefined;
627
+ ActualFirewallSubnetRoutes?: Route[] | undefined;
628
+ InternetGatewayId?: string | undefined;
629
+ CurrentInternetGatewayRouteTable?: string | undefined;
630
+ ExpectedInternetGatewayRoutes?: ExpectedRoute[] | undefined;
631
+ ActualInternetGatewayRoutes?: Route[] | undefined;
632
+ VpcId?: string | undefined;
627
633
  }
628
634
  export interface NetworkFirewallInvalidRouteConfigurationViolation {
629
- AffectedSubnets?: string[];
630
- RouteTableId?: string;
631
- IsRouteTableUsedInDifferentAZ?: boolean;
632
- ViolatingRoute?: Route;
633
- CurrentFirewallSubnetRouteTable?: string;
634
- ExpectedFirewallEndpoint?: string;
635
- ActualFirewallEndpoint?: string;
636
- ExpectedFirewallSubnetId?: string;
637
- ActualFirewallSubnetId?: string;
638
- ExpectedFirewallSubnetRoutes?: ExpectedRoute[];
639
- ActualFirewallSubnetRoutes?: Route[];
640
- InternetGatewayId?: string;
641
- CurrentInternetGatewayRouteTable?: string;
642
- ExpectedInternetGatewayRoutes?: ExpectedRoute[];
643
- ActualInternetGatewayRoutes?: Route[];
644
- VpcId?: string;
635
+ AffectedSubnets?: string[] | undefined;
636
+ RouteTableId?: string | undefined;
637
+ IsRouteTableUsedInDifferentAZ?: boolean | undefined;
638
+ ViolatingRoute?: Route | undefined;
639
+ CurrentFirewallSubnetRouteTable?: string | undefined;
640
+ ExpectedFirewallEndpoint?: string | undefined;
641
+ ActualFirewallEndpoint?: string | undefined;
642
+ ExpectedFirewallSubnetId?: string | undefined;
643
+ ActualFirewallSubnetId?: string | undefined;
644
+ ExpectedFirewallSubnetRoutes?: ExpectedRoute[] | undefined;
645
+ ActualFirewallSubnetRoutes?: Route[] | undefined;
646
+ InternetGatewayId?: string | undefined;
647
+ CurrentInternetGatewayRouteTable?: string | undefined;
648
+ ExpectedInternetGatewayRoutes?: ExpectedRoute[] | undefined;
649
+ ActualInternetGatewayRoutes?: Route[] | undefined;
650
+ VpcId?: string | undefined;
645
651
  }
646
652
  export interface NetworkFirewallMissingExpectedRoutesViolation {
647
- ViolationTarget?: string;
648
- ExpectedRoutes?: ExpectedRoute[];
649
- VpcId?: string;
653
+ ViolationTarget?: string | undefined;
654
+ ExpectedRoutes?: ExpectedRoute[] | undefined;
655
+ VpcId?: string | undefined;
650
656
  }
651
657
  export interface NetworkFirewallMissingExpectedRTViolation {
652
- ViolationTarget?: string;
653
- VPC?: string;
654
- AvailabilityZone?: string;
655
- CurrentRouteTable?: string;
656
- ExpectedRouteTable?: string;
658
+ ViolationTarget?: string | undefined;
659
+ VPC?: string | undefined;
660
+ AvailabilityZone?: string | undefined;
661
+ CurrentRouteTable?: string | undefined;
662
+ ExpectedRouteTable?: string | undefined;
657
663
  }
658
664
  export interface NetworkFirewallMissingFirewallViolation {
659
- ViolationTarget?: string;
660
- VPC?: string;
661
- AvailabilityZone?: string;
662
- TargetViolationReason?: string;
665
+ ViolationTarget?: string | undefined;
666
+ VPC?: string | undefined;
667
+ AvailabilityZone?: string | undefined;
668
+ TargetViolationReason?: string | undefined;
663
669
  }
664
670
  export interface NetworkFirewallMissingSubnetViolation {
665
- ViolationTarget?: string;
666
- VPC?: string;
667
- AvailabilityZone?: string;
668
- TargetViolationReason?: string;
671
+ ViolationTarget?: string | undefined;
672
+ VPC?: string | undefined;
673
+ AvailabilityZone?: string | undefined;
674
+ TargetViolationReason?: string | undefined;
669
675
  }
670
676
  export declare const RuleOrder: {
671
677
  readonly DEFAULT_ACTION_ORDER: "DEFAULT_ACTION_ORDER";
@@ -681,8 +687,8 @@ export declare const StreamExceptionPolicy: {
681
687
  export type StreamExceptionPolicy =
682
688
  (typeof StreamExceptionPolicy)[keyof typeof StreamExceptionPolicy];
683
689
  export interface StatefulEngineOptions {
684
- RuleOrder?: RuleOrder;
685
- StreamExceptionPolicy?: StreamExceptionPolicy;
690
+ RuleOrder?: RuleOrder | undefined;
691
+ StreamExceptionPolicy?: StreamExceptionPolicy | undefined;
686
692
  }
687
693
  export declare const NetworkFirewallOverrideAction: {
688
694
  readonly DROP_TO_ALERT: "DROP_TO_ALERT";
@@ -690,213 +696,261 @@ export declare const NetworkFirewallOverrideAction: {
690
696
  export type NetworkFirewallOverrideAction =
691
697
  (typeof NetworkFirewallOverrideAction)[keyof typeof NetworkFirewallOverrideAction];
692
698
  export interface NetworkFirewallStatefulRuleGroupOverride {
693
- Action?: NetworkFirewallOverrideAction;
699
+ Action?: NetworkFirewallOverrideAction | undefined;
694
700
  }
695
701
  export interface StatefulRuleGroup {
696
- RuleGroupName?: string;
697
- ResourceId?: string;
698
- Priority?: number;
699
- Override?: NetworkFirewallStatefulRuleGroupOverride;
702
+ RuleGroupName?: string | undefined;
703
+ ResourceId?: string | undefined;
704
+ Priority?: number | undefined;
705
+ Override?: NetworkFirewallStatefulRuleGroupOverride | undefined;
700
706
  }
701
707
  export interface StatelessRuleGroup {
702
- RuleGroupName?: string;
703
- ResourceId?: string;
704
- Priority?: number;
708
+ RuleGroupName?: string | undefined;
709
+ ResourceId?: string | undefined;
710
+ Priority?: number | undefined;
705
711
  }
706
712
  export interface NetworkFirewallPolicyDescription {
707
- StatelessRuleGroups?: StatelessRuleGroup[];
708
- StatelessDefaultActions?: string[];
709
- StatelessFragmentDefaultActions?: string[];
710
- StatelessCustomActions?: string[];
711
- StatefulRuleGroups?: StatefulRuleGroup[];
712
- StatefulDefaultActions?: string[];
713
- StatefulEngineOptions?: StatefulEngineOptions;
713
+ StatelessRuleGroups?: StatelessRuleGroup[] | undefined;
714
+ StatelessDefaultActions?: string[] | undefined;
715
+ StatelessFragmentDefaultActions?: string[] | undefined;
716
+ StatelessCustomActions?: string[] | undefined;
717
+ StatefulRuleGroups?: StatefulRuleGroup[] | undefined;
718
+ StatefulDefaultActions?: string[] | undefined;
719
+ StatefulEngineOptions?: StatefulEngineOptions | undefined;
714
720
  }
715
721
  export interface NetworkFirewallPolicyModifiedViolation {
716
- ViolationTarget?: string;
717
- CurrentPolicyDescription?: NetworkFirewallPolicyDescription;
718
- ExpectedPolicyDescription?: NetworkFirewallPolicyDescription;
722
+ ViolationTarget?: string | undefined;
723
+ CurrentPolicyDescription?: NetworkFirewallPolicyDescription | undefined;
724
+ ExpectedPolicyDescription?: NetworkFirewallPolicyDescription | undefined;
719
725
  }
720
726
  export interface NetworkFirewallUnexpectedFirewallRoutesViolation {
721
- FirewallSubnetId?: string;
722
- ViolatingRoutes?: Route[];
723
- RouteTableId?: string;
724
- FirewallEndpoint?: string;
725
- VpcId?: string;
727
+ FirewallSubnetId?: string | undefined;
728
+ ViolatingRoutes?: Route[] | undefined;
729
+ RouteTableId?: string | undefined;
730
+ FirewallEndpoint?: string | undefined;
731
+ VpcId?: string | undefined;
726
732
  }
727
733
  export interface NetworkFirewallUnexpectedGatewayRoutesViolation {
728
- GatewayId?: string;
729
- ViolatingRoutes?: Route[];
730
- RouteTableId?: string;
731
- VpcId?: string;
734
+ GatewayId?: string | undefined;
735
+ ViolatingRoutes?: Route[] | undefined;
736
+ RouteTableId?: string | undefined;
737
+ VpcId?: string | undefined;
732
738
  }
733
739
  export interface CreateNetworkAclAction {
734
- Description?: string;
735
- Vpc?: ActionTarget;
736
- FMSCanRemediate?: boolean;
740
+ Description?: string | undefined;
741
+ Vpc?: ActionTarget | undefined;
742
+ FMSCanRemediate?: boolean | undefined;
737
743
  }
738
744
  export interface CreateNetworkAclEntriesAction {
739
- Description?: string;
740
- NetworkAclId?: ActionTarget;
741
- NetworkAclEntriesToBeCreated?: EntryDescription[];
742
- FMSCanRemediate?: boolean;
745
+ Description?: string | undefined;
746
+ NetworkAclId?: ActionTarget | undefined;
747
+ NetworkAclEntriesToBeCreated?: EntryDescription[] | undefined;
748
+ FMSCanRemediate?: boolean | undefined;
743
749
  }
744
750
  export interface DeleteNetworkAclEntriesAction {
745
- Description?: string;
746
- NetworkAclId?: ActionTarget;
747
- NetworkAclEntriesToBeDeleted?: EntryDescription[];
748
- FMSCanRemediate?: boolean;
751
+ Description?: string | undefined;
752
+ NetworkAclId?: ActionTarget | undefined;
753
+ NetworkAclEntriesToBeDeleted?: EntryDescription[] | undefined;
754
+ FMSCanRemediate?: boolean | undefined;
749
755
  }
750
756
  export interface EC2AssociateRouteTableAction {
751
- Description?: string;
757
+ Description?: string | undefined;
752
758
  RouteTableId: ActionTarget | undefined;
753
- SubnetId?: ActionTarget;
754
- GatewayId?: ActionTarget;
759
+ SubnetId?: ActionTarget | undefined;
760
+ GatewayId?: ActionTarget | undefined;
755
761
  }
756
762
  export interface EC2CopyRouteTableAction {
757
- Description?: string;
763
+ Description?: string | undefined;
758
764
  VpcId: ActionTarget | undefined;
759
765
  RouteTableId: ActionTarget | undefined;
760
766
  }
761
767
  export interface EC2CreateRouteAction {
762
- Description?: string;
763
- DestinationCidrBlock?: string;
764
- DestinationPrefixListId?: string;
765
- DestinationIpv6CidrBlock?: string;
766
- VpcEndpointId?: ActionTarget;
767
- GatewayId?: ActionTarget;
768
+ Description?: string | undefined;
769
+ DestinationCidrBlock?: string | undefined;
770
+ DestinationPrefixListId?: string | undefined;
771
+ DestinationIpv6CidrBlock?: string | undefined;
772
+ VpcEndpointId?: ActionTarget | undefined;
773
+ GatewayId?: ActionTarget | undefined;
768
774
  RouteTableId: ActionTarget | undefined;
769
775
  }
770
776
  export interface EC2CreateRouteTableAction {
771
- Description?: string;
777
+ Description?: string | undefined;
772
778
  VpcId: ActionTarget | undefined;
773
779
  }
774
780
  export interface EC2DeleteRouteAction {
775
- Description?: string;
776
- DestinationCidrBlock?: string;
777
- DestinationPrefixListId?: string;
778
- DestinationIpv6CidrBlock?: string;
781
+ Description?: string | undefined;
782
+ DestinationCidrBlock?: string | undefined;
783
+ DestinationPrefixListId?: string | undefined;
784
+ DestinationIpv6CidrBlock?: string | undefined;
779
785
  RouteTableId: ActionTarget | undefined;
780
786
  }
781
787
  export interface EC2ReplaceRouteAction {
782
- Description?: string;
783
- DestinationCidrBlock?: string;
784
- DestinationPrefixListId?: string;
785
- DestinationIpv6CidrBlock?: string;
786
- GatewayId?: ActionTarget;
788
+ Description?: string | undefined;
789
+ DestinationCidrBlock?: string | undefined;
790
+ DestinationPrefixListId?: string | undefined;
791
+ DestinationIpv6CidrBlock?: string | undefined;
792
+ GatewayId?: ActionTarget | undefined;
787
793
  RouteTableId: ActionTarget | undefined;
788
794
  }
789
795
  export interface EC2ReplaceRouteTableAssociationAction {
790
- Description?: string;
796
+ Description?: string | undefined;
791
797
  AssociationId: ActionTarget | undefined;
792
798
  RouteTableId: ActionTarget | undefined;
793
799
  }
794
800
  export interface FMSPolicyUpdateFirewallCreationConfigAction {
795
- Description?: string;
796
- FirewallCreationConfig?: string;
801
+ Description?: string | undefined;
802
+ FirewallCreationConfig?: string | undefined;
797
803
  }
798
804
  export interface ReplaceNetworkAclAssociationAction {
799
- Description?: string;
800
- AssociationId?: ActionTarget;
801
- NetworkAclId?: ActionTarget;
802
- FMSCanRemediate?: boolean;
805
+ Description?: string | undefined;
806
+ AssociationId?: ActionTarget | undefined;
807
+ NetworkAclId?: ActionTarget | undefined;
808
+ FMSCanRemediate?: boolean | undefined;
803
809
  }
804
810
  export interface RemediationAction {
805
- Description?: string;
806
- EC2CreateRouteAction?: EC2CreateRouteAction;
807
- EC2ReplaceRouteAction?: EC2ReplaceRouteAction;
808
- EC2DeleteRouteAction?: EC2DeleteRouteAction;
809
- EC2CopyRouteTableAction?: EC2CopyRouteTableAction;
810
- EC2ReplaceRouteTableAssociationAction?: EC2ReplaceRouteTableAssociationAction;
811
- EC2AssociateRouteTableAction?: EC2AssociateRouteTableAction;
812
- EC2CreateRouteTableAction?: EC2CreateRouteTableAction;
813
- FMSPolicyUpdateFirewallCreationConfigAction?: FMSPolicyUpdateFirewallCreationConfigAction;
814
- CreateNetworkAclAction?: CreateNetworkAclAction;
815
- ReplaceNetworkAclAssociationAction?: ReplaceNetworkAclAssociationAction;
816
- CreateNetworkAclEntriesAction?: CreateNetworkAclEntriesAction;
817
- DeleteNetworkAclEntriesAction?: DeleteNetworkAclEntriesAction;
811
+ Description?: string | undefined;
812
+ EC2CreateRouteAction?: EC2CreateRouteAction | undefined;
813
+ EC2ReplaceRouteAction?: EC2ReplaceRouteAction | undefined;
814
+ EC2DeleteRouteAction?: EC2DeleteRouteAction | undefined;
815
+ EC2CopyRouteTableAction?: EC2CopyRouteTableAction | undefined;
816
+ EC2ReplaceRouteTableAssociationAction?:
817
+ | EC2ReplaceRouteTableAssociationAction
818
+ | undefined;
819
+ EC2AssociateRouteTableAction?: EC2AssociateRouteTableAction | undefined;
820
+ EC2CreateRouteTableAction?: EC2CreateRouteTableAction | undefined;
821
+ FMSPolicyUpdateFirewallCreationConfigAction?:
822
+ | FMSPolicyUpdateFirewallCreationConfigAction
823
+ | undefined;
824
+ CreateNetworkAclAction?: CreateNetworkAclAction | undefined;
825
+ ReplaceNetworkAclAssociationAction?:
826
+ | ReplaceNetworkAclAssociationAction
827
+ | undefined;
828
+ CreateNetworkAclEntriesAction?: CreateNetworkAclEntriesAction | undefined;
829
+ DeleteNetworkAclEntriesAction?: DeleteNetworkAclEntriesAction | undefined;
818
830
  }
819
831
  export interface RemediationActionWithOrder {
820
- RemediationAction?: RemediationAction;
821
- Order?: number;
832
+ RemediationAction?: RemediationAction | undefined;
833
+ Order?: number | undefined;
822
834
  }
823
835
  export interface PossibleRemediationAction {
824
- Description?: string;
836
+ Description?: string | undefined;
825
837
  OrderedRemediationActions: RemediationActionWithOrder[] | undefined;
826
- IsDefaultAction?: boolean;
838
+ IsDefaultAction?: boolean | undefined;
827
839
  }
828
840
  export interface PossibleRemediationActions {
829
- Description?: string;
830
- Actions?: PossibleRemediationAction[];
841
+ Description?: string | undefined;
842
+ Actions?: PossibleRemediationAction[] | undefined;
831
843
  }
832
844
  export interface RouteHasOutOfScopeEndpointViolation {
833
- SubnetId?: string;
834
- VpcId?: string;
835
- RouteTableId?: string;
836
- ViolatingRoutes?: Route[];
837
- SubnetAvailabilityZone?: string;
838
- SubnetAvailabilityZoneId?: string;
839
- CurrentFirewallSubnetRouteTable?: string;
840
- FirewallSubnetId?: string;
841
- FirewallSubnetRoutes?: Route[];
842
- InternetGatewayId?: string;
843
- CurrentInternetGatewayRouteTable?: string;
844
- InternetGatewayRoutes?: Route[];
845
+ SubnetId?: string | undefined;
846
+ VpcId?: string | undefined;
847
+ RouteTableId?: string | undefined;
848
+ ViolatingRoutes?: Route[] | undefined;
849
+ SubnetAvailabilityZone?: string | undefined;
850
+ SubnetAvailabilityZoneId?: string | undefined;
851
+ CurrentFirewallSubnetRouteTable?: string | undefined;
852
+ FirewallSubnetId?: string | undefined;
853
+ FirewallSubnetRoutes?: Route[] | undefined;
854
+ InternetGatewayId?: string | undefined;
855
+ CurrentInternetGatewayRouteTable?: string | undefined;
856
+ InternetGatewayRoutes?: Route[] | undefined;
845
857
  }
846
858
  export interface ThirdPartyFirewallMissingExpectedRouteTableViolation {
847
- ViolationTarget?: string;
848
- VPC?: string;
849
- AvailabilityZone?: string;
850
- CurrentRouteTable?: string;
851
- ExpectedRouteTable?: string;
859
+ ViolationTarget?: string | undefined;
860
+ VPC?: string | undefined;
861
+ AvailabilityZone?: string | undefined;
862
+ CurrentRouteTable?: string | undefined;
863
+ ExpectedRouteTable?: string | undefined;
852
864
  }
853
865
  export interface ThirdPartyFirewallMissingFirewallViolation {
854
- ViolationTarget?: string;
855
- VPC?: string;
856
- AvailabilityZone?: string;
857
- TargetViolationReason?: string;
866
+ ViolationTarget?: string | undefined;
867
+ VPC?: string | undefined;
868
+ AvailabilityZone?: string | undefined;
869
+ TargetViolationReason?: string | undefined;
858
870
  }
859
871
  export interface ThirdPartyFirewallMissingSubnetViolation {
860
- ViolationTarget?: string;
861
- VPC?: string;
862
- AvailabilityZone?: string;
863
- TargetViolationReason?: string;
872
+ ViolationTarget?: string | undefined;
873
+ VPC?: string | undefined;
874
+ AvailabilityZone?: string | undefined;
875
+ TargetViolationReason?: string | undefined;
864
876
  }
865
877
  export interface WebACLHasIncompatibleConfigurationViolation {
866
- WebACLArn?: string;
867
- Description?: string;
878
+ WebACLArn?: string | undefined;
879
+ Description?: string | undefined;
868
880
  }
869
881
  export interface WebACLHasOutOfScopeResourcesViolation {
870
- WebACLArn?: string;
871
- OutOfScopeResourceList?: string[];
882
+ WebACLArn?: string | undefined;
883
+ OutOfScopeResourceList?: string[] | undefined;
872
884
  }
873
885
  export interface ResourceViolation {
874
- AwsVPCSecurityGroupViolation?: AwsVPCSecurityGroupViolation;
875
- AwsEc2NetworkInterfaceViolation?: AwsEc2NetworkInterfaceViolation;
876
- AwsEc2InstanceViolation?: AwsEc2InstanceViolation;
877
- NetworkFirewallMissingFirewallViolation?: NetworkFirewallMissingFirewallViolation;
878
- NetworkFirewallMissingSubnetViolation?: NetworkFirewallMissingSubnetViolation;
879
- NetworkFirewallMissingExpectedRTViolation?: NetworkFirewallMissingExpectedRTViolation;
880
- NetworkFirewallPolicyModifiedViolation?: NetworkFirewallPolicyModifiedViolation;
881
- NetworkFirewallInternetTrafficNotInspectedViolation?: NetworkFirewallInternetTrafficNotInspectedViolation;
882
- NetworkFirewallInvalidRouteConfigurationViolation?: NetworkFirewallInvalidRouteConfigurationViolation;
883
- NetworkFirewallBlackHoleRouteDetectedViolation?: NetworkFirewallBlackHoleRouteDetectedViolation;
884
- NetworkFirewallUnexpectedFirewallRoutesViolation?: NetworkFirewallUnexpectedFirewallRoutesViolation;
885
- NetworkFirewallUnexpectedGatewayRoutesViolation?: NetworkFirewallUnexpectedGatewayRoutesViolation;
886
- NetworkFirewallMissingExpectedRoutesViolation?: NetworkFirewallMissingExpectedRoutesViolation;
887
- DnsRuleGroupPriorityConflictViolation?: DnsRuleGroupPriorityConflictViolation;
888
- DnsDuplicateRuleGroupViolation?: DnsDuplicateRuleGroupViolation;
889
- DnsRuleGroupLimitExceededViolation?: DnsRuleGroupLimitExceededViolation;
890
- FirewallSubnetIsOutOfScopeViolation?: FirewallSubnetIsOutOfScopeViolation;
891
- RouteHasOutOfScopeEndpointViolation?: RouteHasOutOfScopeEndpointViolation;
892
- ThirdPartyFirewallMissingFirewallViolation?: ThirdPartyFirewallMissingFirewallViolation;
893
- ThirdPartyFirewallMissingSubnetViolation?: ThirdPartyFirewallMissingSubnetViolation;
894
- ThirdPartyFirewallMissingExpectedRouteTableViolation?: ThirdPartyFirewallMissingExpectedRouteTableViolation;
895
- FirewallSubnetMissingVPCEndpointViolation?: FirewallSubnetMissingVPCEndpointViolation;
896
- InvalidNetworkAclEntriesViolation?: InvalidNetworkAclEntriesViolation;
897
- PossibleRemediationActions?: PossibleRemediationActions;
898
- WebACLHasIncompatibleConfigurationViolation?: WebACLHasIncompatibleConfigurationViolation;
899
- WebACLHasOutOfScopeResourcesViolation?: WebACLHasOutOfScopeResourcesViolation;
886
+ AwsVPCSecurityGroupViolation?: AwsVPCSecurityGroupViolation | undefined;
887
+ AwsEc2NetworkInterfaceViolation?: AwsEc2NetworkInterfaceViolation | undefined;
888
+ AwsEc2InstanceViolation?: AwsEc2InstanceViolation | undefined;
889
+ NetworkFirewallMissingFirewallViolation?:
890
+ | NetworkFirewallMissingFirewallViolation
891
+ | undefined;
892
+ NetworkFirewallMissingSubnetViolation?:
893
+ | NetworkFirewallMissingSubnetViolation
894
+ | undefined;
895
+ NetworkFirewallMissingExpectedRTViolation?:
896
+ | NetworkFirewallMissingExpectedRTViolation
897
+ | undefined;
898
+ NetworkFirewallPolicyModifiedViolation?:
899
+ | NetworkFirewallPolicyModifiedViolation
900
+ | undefined;
901
+ NetworkFirewallInternetTrafficNotInspectedViolation?:
902
+ | NetworkFirewallInternetTrafficNotInspectedViolation
903
+ | undefined;
904
+ NetworkFirewallInvalidRouteConfigurationViolation?:
905
+ | NetworkFirewallInvalidRouteConfigurationViolation
906
+ | undefined;
907
+ NetworkFirewallBlackHoleRouteDetectedViolation?:
908
+ | NetworkFirewallBlackHoleRouteDetectedViolation
909
+ | undefined;
910
+ NetworkFirewallUnexpectedFirewallRoutesViolation?:
911
+ | NetworkFirewallUnexpectedFirewallRoutesViolation
912
+ | undefined;
913
+ NetworkFirewallUnexpectedGatewayRoutesViolation?:
914
+ | NetworkFirewallUnexpectedGatewayRoutesViolation
915
+ | undefined;
916
+ NetworkFirewallMissingExpectedRoutesViolation?:
917
+ | NetworkFirewallMissingExpectedRoutesViolation
918
+ | undefined;
919
+ DnsRuleGroupPriorityConflictViolation?:
920
+ | DnsRuleGroupPriorityConflictViolation
921
+ | undefined;
922
+ DnsDuplicateRuleGroupViolation?: DnsDuplicateRuleGroupViolation | undefined;
923
+ DnsRuleGroupLimitExceededViolation?:
924
+ | DnsRuleGroupLimitExceededViolation
925
+ | undefined;
926
+ FirewallSubnetIsOutOfScopeViolation?:
927
+ | FirewallSubnetIsOutOfScopeViolation
928
+ | undefined;
929
+ RouteHasOutOfScopeEndpointViolation?:
930
+ | RouteHasOutOfScopeEndpointViolation
931
+ | undefined;
932
+ ThirdPartyFirewallMissingFirewallViolation?:
933
+ | ThirdPartyFirewallMissingFirewallViolation
934
+ | undefined;
935
+ ThirdPartyFirewallMissingSubnetViolation?:
936
+ | ThirdPartyFirewallMissingSubnetViolation
937
+ | undefined;
938
+ ThirdPartyFirewallMissingExpectedRouteTableViolation?:
939
+ | ThirdPartyFirewallMissingExpectedRouteTableViolation
940
+ | undefined;
941
+ FirewallSubnetMissingVPCEndpointViolation?:
942
+ | FirewallSubnetMissingVPCEndpointViolation
943
+ | undefined;
944
+ InvalidNetworkAclEntriesViolation?:
945
+ | InvalidNetworkAclEntriesViolation
946
+ | undefined;
947
+ PossibleRemediationActions?: PossibleRemediationActions | undefined;
948
+ WebACLHasIncompatibleConfigurationViolation?:
949
+ | WebACLHasIncompatibleConfigurationViolation
950
+ | undefined;
951
+ WebACLHasOutOfScopeResourcesViolation?:
952
+ | WebACLHasOutOfScopeResourcesViolation
953
+ | undefined;
900
954
  }
901
955
  export interface ViolationDetail {
902
956
  PolicyId: string | undefined;
@@ -904,41 +958,41 @@ export interface ViolationDetail {
904
958
  ResourceId: string | undefined;
905
959
  ResourceType: string | undefined;
906
960
  ResourceViolations: ResourceViolation[] | undefined;
907
- ResourceTags?: Tag[];
908
- ResourceDescription?: string;
961
+ ResourceTags?: Tag[] | undefined;
962
+ ResourceDescription?: string | undefined;
909
963
  }
910
964
  export interface GetViolationDetailsResponse {
911
- ViolationDetail?: ViolationDetail;
965
+ ViolationDetail?: ViolationDetail | undefined;
912
966
  }
913
967
  export interface ListAdminAccountsForOrganizationRequest {
914
- NextToken?: string;
915
- MaxResults?: number;
968
+ NextToken?: string | undefined;
969
+ MaxResults?: number | undefined;
916
970
  }
917
971
  export interface ListAdminAccountsForOrganizationResponse {
918
- AdminAccounts?: AdminAccountSummary[];
919
- NextToken?: string;
972
+ AdminAccounts?: AdminAccountSummary[] | undefined;
973
+ NextToken?: string | undefined;
920
974
  }
921
975
  export interface ListAdminsManagingAccountRequest {
922
- NextToken?: string;
923
- MaxResults?: number;
976
+ NextToken?: string | undefined;
977
+ MaxResults?: number | undefined;
924
978
  }
925
979
  export interface ListAdminsManagingAccountResponse {
926
- AdminAccounts?: string[];
927
- NextToken?: string;
980
+ AdminAccounts?: string[] | undefined;
981
+ NextToken?: string | undefined;
928
982
  }
929
983
  export interface ListAppsListsRequest {
930
- DefaultLists?: boolean;
931
- NextToken?: string;
984
+ DefaultLists?: boolean | undefined;
985
+ NextToken?: string | undefined;
932
986
  MaxResults: number | undefined;
933
987
  }
934
988
  export interface ListAppsListsResponse {
935
- AppsLists?: AppsListDataSummary[];
936
- NextToken?: string;
989
+ AppsLists?: AppsListDataSummary[] | undefined;
990
+ NextToken?: string | undefined;
937
991
  }
938
992
  export interface ListComplianceStatusRequest {
939
993
  PolicyId: string | undefined;
940
- NextToken?: string;
941
- MaxResults?: number;
994
+ NextToken?: string | undefined;
995
+ MaxResults?: number | undefined;
942
996
  }
943
997
  export declare const PolicyComplianceStatusType: {
944
998
  readonly Compliant: "COMPLIANT";
@@ -947,138 +1001,140 @@ export declare const PolicyComplianceStatusType: {
947
1001
  export type PolicyComplianceStatusType =
948
1002
  (typeof PolicyComplianceStatusType)[keyof typeof PolicyComplianceStatusType];
949
1003
  export interface EvaluationResult {
950
- ComplianceStatus?: PolicyComplianceStatusType;
951
- ViolatorCount?: number;
952
- EvaluationLimitExceeded?: boolean;
1004
+ ComplianceStatus?: PolicyComplianceStatusType | undefined;
1005
+ ViolatorCount?: number | undefined;
1006
+ EvaluationLimitExceeded?: boolean | undefined;
953
1007
  }
954
1008
  export interface PolicyComplianceStatus {
955
- PolicyOwner?: string;
956
- PolicyId?: string;
957
- PolicyName?: string;
958
- MemberAccount?: string;
959
- EvaluationResults?: EvaluationResult[];
960
- LastUpdated?: Date;
961
- IssueInfoMap?: Partial<Record<DependentServiceName, string>>;
1009
+ PolicyOwner?: string | undefined;
1010
+ PolicyId?: string | undefined;
1011
+ PolicyName?: string | undefined;
1012
+ MemberAccount?: string | undefined;
1013
+ EvaluationResults?: EvaluationResult[] | undefined;
1014
+ LastUpdated?: Date | undefined;
1015
+ IssueInfoMap?: Partial<Record<DependentServiceName, string>> | undefined;
962
1016
  }
963
1017
  export interface ListComplianceStatusResponse {
964
- PolicyComplianceStatusList?: PolicyComplianceStatus[];
965
- NextToken?: string;
1018
+ PolicyComplianceStatusList?: PolicyComplianceStatus[] | undefined;
1019
+ NextToken?: string | undefined;
966
1020
  }
967
1021
  export interface ListDiscoveredResourcesRequest {
968
1022
  MemberAccountIds: string[] | undefined;
969
1023
  ResourceType: string | undefined;
970
- MaxResults?: number;
971
- NextToken?: string;
1024
+ MaxResults?: number | undefined;
1025
+ NextToken?: string | undefined;
972
1026
  }
973
1027
  export interface DiscoveredResource {
974
- URI?: string;
975
- AccountId?: string;
976
- Type?: string;
977
- Name?: string;
1028
+ URI?: string | undefined;
1029
+ AccountId?: string | undefined;
1030
+ Type?: string | undefined;
1031
+ Name?: string | undefined;
978
1032
  }
979
1033
  export interface ListDiscoveredResourcesResponse {
980
- Items?: DiscoveredResource[];
981
- NextToken?: string;
1034
+ Items?: DiscoveredResource[] | undefined;
1035
+ NextToken?: string | undefined;
982
1036
  }
983
1037
  export interface ListMemberAccountsRequest {
984
- NextToken?: string;
985
- MaxResults?: number;
1038
+ NextToken?: string | undefined;
1039
+ MaxResults?: number | undefined;
986
1040
  }
987
1041
  export interface ListMemberAccountsResponse {
988
- MemberAccounts?: string[];
989
- NextToken?: string;
1042
+ MemberAccounts?: string[] | undefined;
1043
+ NextToken?: string | undefined;
990
1044
  }
991
1045
  export interface ListPoliciesRequest {
992
- NextToken?: string;
993
- MaxResults?: number;
1046
+ NextToken?: string | undefined;
1047
+ MaxResults?: number | undefined;
994
1048
  }
995
1049
  export interface PolicySummary {
996
- PolicyArn?: string;
997
- PolicyId?: string;
998
- PolicyName?: string;
999
- ResourceType?: string;
1000
- SecurityServiceType?: SecurityServiceType;
1001
- RemediationEnabled?: boolean;
1002
- DeleteUnusedFMManagedResources?: boolean;
1003
- PolicyStatus?: CustomerPolicyStatus;
1050
+ PolicyArn?: string | undefined;
1051
+ PolicyId?: string | undefined;
1052
+ PolicyName?: string | undefined;
1053
+ ResourceType?: string | undefined;
1054
+ SecurityServiceType?: SecurityServiceType | undefined;
1055
+ RemediationEnabled?: boolean | undefined;
1056
+ DeleteUnusedFMManagedResources?: boolean | undefined;
1057
+ PolicyStatus?: CustomerPolicyStatus | undefined;
1004
1058
  }
1005
1059
  export interface ListPoliciesResponse {
1006
- PolicyList?: PolicySummary[];
1007
- NextToken?: string;
1060
+ PolicyList?: PolicySummary[] | undefined;
1061
+ NextToken?: string | undefined;
1008
1062
  }
1009
1063
  export interface ListProtocolsListsRequest {
1010
- DefaultLists?: boolean;
1011
- NextToken?: string;
1064
+ DefaultLists?: boolean | undefined;
1065
+ NextToken?: string | undefined;
1012
1066
  MaxResults: number | undefined;
1013
1067
  }
1014
1068
  export interface ProtocolsListDataSummary {
1015
- ListArn?: string;
1016
- ListId?: string;
1017
- ListName?: string;
1018
- ProtocolsList?: string[];
1069
+ ListArn?: string | undefined;
1070
+ ListId?: string | undefined;
1071
+ ListName?: string | undefined;
1072
+ ProtocolsList?: string[] | undefined;
1019
1073
  }
1020
1074
  export interface ListProtocolsListsResponse {
1021
- ProtocolsLists?: ProtocolsListDataSummary[];
1022
- NextToken?: string;
1075
+ ProtocolsLists?: ProtocolsListDataSummary[] | undefined;
1076
+ NextToken?: string | undefined;
1023
1077
  }
1024
1078
  export interface ListResourceSetResourcesRequest {
1025
1079
  Identifier: string | undefined;
1026
- MaxResults?: number;
1027
- NextToken?: string;
1080
+ MaxResults?: number | undefined;
1081
+ NextToken?: string | undefined;
1028
1082
  }
1029
1083
  export interface Resource {
1030
1084
  URI: string | undefined;
1031
- AccountId?: string;
1085
+ AccountId?: string | undefined;
1032
1086
  }
1033
1087
  export interface ListResourceSetResourcesResponse {
1034
1088
  Items: Resource[] | undefined;
1035
- NextToken?: string;
1089
+ NextToken?: string | undefined;
1036
1090
  }
1037
1091
  export interface ListResourceSetsRequest {
1038
- NextToken?: string;
1039
- MaxResults?: number;
1092
+ NextToken?: string | undefined;
1093
+ MaxResults?: number | undefined;
1040
1094
  }
1041
1095
  export interface ResourceSetSummary {
1042
- Id?: string;
1043
- Name?: string;
1044
- Description?: string;
1045
- LastUpdateTime?: Date;
1046
- ResourceSetStatus?: ResourceSetStatus;
1096
+ Id?: string | undefined;
1097
+ Name?: string | undefined;
1098
+ Description?: string | undefined;
1099
+ LastUpdateTime?: Date | undefined;
1100
+ ResourceSetStatus?: ResourceSetStatus | undefined;
1047
1101
  }
1048
1102
  export interface ListResourceSetsResponse {
1049
- ResourceSets?: ResourceSetSummary[];
1050
- NextToken?: string;
1103
+ ResourceSets?: ResourceSetSummary[] | undefined;
1104
+ NextToken?: string | undefined;
1051
1105
  }
1052
1106
  export interface ListTagsForResourceRequest {
1053
1107
  ResourceArn: string | undefined;
1054
1108
  }
1055
1109
  export interface ListTagsForResourceResponse {
1056
- TagList?: Tag[];
1110
+ TagList?: Tag[] | undefined;
1057
1111
  }
1058
1112
  export interface ListThirdPartyFirewallFirewallPoliciesRequest {
1059
1113
  ThirdPartyFirewall: ThirdPartyFirewall | undefined;
1060
- NextToken?: string;
1114
+ NextToken?: string | undefined;
1061
1115
  MaxResults: number | undefined;
1062
1116
  }
1063
1117
  export interface ThirdPartyFirewallFirewallPolicy {
1064
- FirewallPolicyId?: string;
1065
- FirewallPolicyName?: string;
1118
+ FirewallPolicyId?: string | undefined;
1119
+ FirewallPolicyName?: string | undefined;
1066
1120
  }
1067
1121
  export interface ListThirdPartyFirewallFirewallPoliciesResponse {
1068
- ThirdPartyFirewallFirewallPolicies?: ThirdPartyFirewallFirewallPolicy[];
1069
- NextToken?: string;
1122
+ ThirdPartyFirewallFirewallPolicies?:
1123
+ | ThirdPartyFirewallFirewallPolicy[]
1124
+ | undefined;
1125
+ NextToken?: string | undefined;
1070
1126
  }
1071
1127
  export interface PutAdminAccountRequest {
1072
1128
  AdminAccount: string | undefined;
1073
- AdminScope?: AdminScope;
1129
+ AdminScope?: AdminScope | undefined;
1074
1130
  }
1075
1131
  export interface PutAppsListRequest {
1076
1132
  AppsList: AppsListData | undefined;
1077
- TagList?: Tag[];
1133
+ TagList?: Tag[] | undefined;
1078
1134
  }
1079
1135
  export interface PutAppsListResponse {
1080
- AppsList?: AppsListData;
1081
- AppsListArn?: string;
1136
+ AppsList?: AppsListData | undefined;
1137
+ AppsListArn?: string | undefined;
1082
1138
  }
1083
1139
  export interface PutNotificationChannelRequest {
1084
1140
  SnsTopicArn: string | undefined;
@@ -1086,23 +1142,23 @@ export interface PutNotificationChannelRequest {
1086
1142
  }
1087
1143
  export interface PutPolicyRequest {
1088
1144
  Policy: Policy | undefined;
1089
- TagList?: Tag[];
1145
+ TagList?: Tag[] | undefined;
1090
1146
  }
1091
1147
  export interface PutPolicyResponse {
1092
- Policy?: Policy;
1093
- PolicyArn?: string;
1148
+ Policy?: Policy | undefined;
1149
+ PolicyArn?: string | undefined;
1094
1150
  }
1095
1151
  export interface PutProtocolsListRequest {
1096
1152
  ProtocolsList: ProtocolsListData | undefined;
1097
- TagList?: Tag[];
1153
+ TagList?: Tag[] | undefined;
1098
1154
  }
1099
1155
  export interface PutProtocolsListResponse {
1100
- ProtocolsList?: ProtocolsListData;
1101
- ProtocolsListArn?: string;
1156
+ ProtocolsList?: ProtocolsListData | undefined;
1157
+ ProtocolsListArn?: string | undefined;
1102
1158
  }
1103
1159
  export interface PutResourceSetRequest {
1104
1160
  ResourceSet: ResourceSet | undefined;
1105
- TagList?: Tag[];
1161
+ TagList?: Tag[] | undefined;
1106
1162
  }
1107
1163
  export interface PutResourceSetResponse {
1108
1164
  ResourceSet: ResourceSet | undefined;