@aws-sdk/client-fms 3.934.0 → 3.935.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/dist-cjs/index.js +161 -160
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +160 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -245
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +352 -0
- package/dist-types/models/errors.d.ts +88 -0
- package/dist-types/models/models_0.d.ts +1 -440
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +205 -0
- package/dist-types/ts3.4/models/errors.d.ts +50 -0
- package/dist-types/ts3.4/models/models_0.d.ts +26 -255
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { FMSServiceException as __BaseException } from "./FMSServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The operation failed because of a system problem, even though the request was valid. Retry
|
|
5
|
+
* your request.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class InternalErrorException extends __BaseException {
|
|
9
|
+
readonly name: "InternalErrorException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
Message?: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<InternalErrorException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p>The parameters of the request were invalid.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class InvalidInputException extends __BaseException {
|
|
22
|
+
readonly name: "InvalidInputException";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
Message?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* <p>The operation failed because there was nothing to do or the operation wasn't possible. For example, you might have
|
|
32
|
+
* submitted an <code>AssociateAdminAccount</code> request for an account ID that
|
|
33
|
+
* was already set as the Firewall Manager administrator. Or you might have tried to access a Region
|
|
34
|
+
* that's disabled by default, and that you need to enable for the Firewall Manager
|
|
35
|
+
* administrator account and for Organizations before you can access it.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export declare class InvalidOperationException extends __BaseException {
|
|
39
|
+
readonly name: "InvalidOperationException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
Message?: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* @internal
|
|
44
|
+
*/
|
|
45
|
+
constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* <p>The operation exceeds a resource limit, for example, the maximum number of
|
|
49
|
+
* <code>policy</code> objects that you can create for an Amazon Web Services account. For more information,
|
|
50
|
+
* see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall
|
|
51
|
+
* Manager Limits</a> in the <i>WAF Developer Guide</i>.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export declare class LimitExceededException extends __BaseException {
|
|
55
|
+
readonly name: "LimitExceededException";
|
|
56
|
+
readonly $fault: "client";
|
|
57
|
+
Message?: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>The specified resource was not found.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
68
|
+
readonly name: "ResourceNotFoundException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
Message?: string | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>The value of the <code>Type</code> parameter is invalid.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class InvalidTypeException extends __BaseException {
|
|
81
|
+
readonly name: "InvalidTypeException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
Message?: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
87
|
+
constructor(opts: __ExceptionOptionType<InvalidTypeException, __BaseException>);
|
|
88
|
+
}
|
|
@@ -1,20 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { FMSServiceException as __BaseException } from "./FMSServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const AccountRoleStatus: {
|
|
8
|
-
readonly Creating: "CREATING";
|
|
9
|
-
readonly Deleted: "DELETED";
|
|
10
|
-
readonly Deleting: "DELETING";
|
|
11
|
-
readonly PendingDeletion: "PENDING_DELETION";
|
|
12
|
-
readonly Ready: "READY";
|
|
13
|
-
};
|
|
14
|
-
/**
|
|
15
|
-
* @public
|
|
16
|
-
*/
|
|
17
|
-
export type AccountRoleStatus = (typeof AccountRoleStatus)[keyof typeof AccountRoleStatus];
|
|
1
|
+
import { AccountRoleStatus, CustomerPolicyScopeIdType, CustomerPolicyStatus, DependentServiceName, DestinationType, EntryType, EntryViolationReason, FailedItemReason, FirewallDeploymentModel, MarketplaceSubscriptionOnboardingStatus, NetworkAclRuleAction, NetworkFirewallOverrideAction, OrganizationStatus, PolicyComplianceStatusType, RemediationActionType, ResourceSetStatus, ResourceTagLogicalOperator, RuleOrder, SecurityServiceType, StreamExceptionPolicy, TargetType, ThirdPartyFirewall, ThirdPartyFirewallAssociationStatus, ViolationReason } from "./enums";
|
|
18
2
|
/**
|
|
19
3
|
* <p>Configures the accounts within the administrator's Organizations organization that the specified Firewall Manager administrator can apply policies to.</p>
|
|
20
4
|
* @public
|
|
@@ -52,20 +36,6 @@ export interface ActionTarget {
|
|
|
52
36
|
*/
|
|
53
37
|
Description?: string | undefined;
|
|
54
38
|
}
|
|
55
|
-
/**
|
|
56
|
-
* @public
|
|
57
|
-
* @enum
|
|
58
|
-
*/
|
|
59
|
-
export declare const OrganizationStatus: {
|
|
60
|
-
readonly Offboarding: "OFFBOARDING";
|
|
61
|
-
readonly OffboardingComplete: "OFFBOARDING_COMPLETE";
|
|
62
|
-
readonly Onboarding: "ONBOARDING";
|
|
63
|
-
readonly OnboardingComplete: "ONBOARDING_COMPLETE";
|
|
64
|
-
};
|
|
65
|
-
/**
|
|
66
|
-
* @public
|
|
67
|
-
*/
|
|
68
|
-
export type OrganizationStatus = (typeof OrganizationStatus)[keyof typeof OrganizationStatus];
|
|
69
39
|
/**
|
|
70
40
|
* <p>Contains high level information about the Firewall Manager administrator account.</p>
|
|
71
41
|
* @public
|
|
@@ -127,27 +97,6 @@ export interface OrganizationalUnitScope {
|
|
|
127
97
|
*/
|
|
128
98
|
ExcludeSpecifiedOrganizationalUnits?: boolean | undefined;
|
|
129
99
|
}
|
|
130
|
-
/**
|
|
131
|
-
* @public
|
|
132
|
-
* @enum
|
|
133
|
-
*/
|
|
134
|
-
export declare const SecurityServiceType: {
|
|
135
|
-
readonly DNS_FIREWALL: "DNS_FIREWALL";
|
|
136
|
-
readonly IMPORT_NETWORK_FIREWALL: "IMPORT_NETWORK_FIREWALL";
|
|
137
|
-
readonly NETWORK_ACL_COMMON: "NETWORK_ACL_COMMON";
|
|
138
|
-
readonly NETWORK_FIREWALL: "NETWORK_FIREWALL";
|
|
139
|
-
readonly SECURITY_GROUPS_COMMON: "SECURITY_GROUPS_COMMON";
|
|
140
|
-
readonly SECURITY_GROUPS_CONTENT_AUDIT: "SECURITY_GROUPS_CONTENT_AUDIT";
|
|
141
|
-
readonly SECURITY_GROUPS_USAGE_AUDIT: "SECURITY_GROUPS_USAGE_AUDIT";
|
|
142
|
-
readonly SHIELD_ADVANCED: "SHIELD_ADVANCED";
|
|
143
|
-
readonly THIRD_PARTY_FIREWALL: "THIRD_PARTY_FIREWALL";
|
|
144
|
-
readonly WAF: "WAF";
|
|
145
|
-
readonly WAFV2: "WAFV2";
|
|
146
|
-
};
|
|
147
|
-
/**
|
|
148
|
-
* @public
|
|
149
|
-
*/
|
|
150
|
-
export type SecurityServiceType = (typeof SecurityServiceType)[keyof typeof SecurityServiceType];
|
|
151
100
|
/**
|
|
152
101
|
* <p>Defines the policy types that the specified Firewall Manager administrator can manage.</p>
|
|
153
102
|
* @public
|
|
@@ -311,91 +260,6 @@ export interface AssociateAdminAccountRequest {
|
|
|
311
260
|
*/
|
|
312
261
|
AdminAccount: string | undefined;
|
|
313
262
|
}
|
|
314
|
-
/**
|
|
315
|
-
* <p>The operation failed because of a system problem, even though the request was valid. Retry
|
|
316
|
-
* your request.</p>
|
|
317
|
-
* @public
|
|
318
|
-
*/
|
|
319
|
-
export declare class InternalErrorException extends __BaseException {
|
|
320
|
-
readonly name: "InternalErrorException";
|
|
321
|
-
readonly $fault: "client";
|
|
322
|
-
Message?: string | undefined;
|
|
323
|
-
/**
|
|
324
|
-
* @internal
|
|
325
|
-
*/
|
|
326
|
-
constructor(opts: __ExceptionOptionType<InternalErrorException, __BaseException>);
|
|
327
|
-
}
|
|
328
|
-
/**
|
|
329
|
-
* <p>The parameters of the request were invalid.</p>
|
|
330
|
-
* @public
|
|
331
|
-
*/
|
|
332
|
-
export declare class InvalidInputException extends __BaseException {
|
|
333
|
-
readonly name: "InvalidInputException";
|
|
334
|
-
readonly $fault: "client";
|
|
335
|
-
Message?: string | undefined;
|
|
336
|
-
/**
|
|
337
|
-
* @internal
|
|
338
|
-
*/
|
|
339
|
-
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
340
|
-
}
|
|
341
|
-
/**
|
|
342
|
-
* <p>The operation failed because there was nothing to do or the operation wasn't possible. For example, you might have
|
|
343
|
-
* submitted an <code>AssociateAdminAccount</code> request for an account ID that
|
|
344
|
-
* was already set as the Firewall Manager administrator. Or you might have tried to access a Region
|
|
345
|
-
* that's disabled by default, and that you need to enable for the Firewall Manager
|
|
346
|
-
* administrator account and for Organizations before you can access it.</p>
|
|
347
|
-
* @public
|
|
348
|
-
*/
|
|
349
|
-
export declare class InvalidOperationException extends __BaseException {
|
|
350
|
-
readonly name: "InvalidOperationException";
|
|
351
|
-
readonly $fault: "client";
|
|
352
|
-
Message?: string | undefined;
|
|
353
|
-
/**
|
|
354
|
-
* @internal
|
|
355
|
-
*/
|
|
356
|
-
constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
|
|
357
|
-
}
|
|
358
|
-
/**
|
|
359
|
-
* <p>The operation exceeds a resource limit, for example, the maximum number of
|
|
360
|
-
* <code>policy</code> objects that you can create for an Amazon Web Services account. For more information,
|
|
361
|
-
* see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-limits.html">Firewall
|
|
362
|
-
* Manager Limits</a> in the <i>WAF Developer Guide</i>.</p>
|
|
363
|
-
* @public
|
|
364
|
-
*/
|
|
365
|
-
export declare class LimitExceededException extends __BaseException {
|
|
366
|
-
readonly name: "LimitExceededException";
|
|
367
|
-
readonly $fault: "client";
|
|
368
|
-
Message?: string | undefined;
|
|
369
|
-
/**
|
|
370
|
-
* @internal
|
|
371
|
-
*/
|
|
372
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
373
|
-
}
|
|
374
|
-
/**
|
|
375
|
-
* <p>The specified resource was not found.</p>
|
|
376
|
-
* @public
|
|
377
|
-
*/
|
|
378
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
379
|
-
readonly name: "ResourceNotFoundException";
|
|
380
|
-
readonly $fault: "client";
|
|
381
|
-
Message?: string | undefined;
|
|
382
|
-
/**
|
|
383
|
-
* @internal
|
|
384
|
-
*/
|
|
385
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
386
|
-
}
|
|
387
|
-
/**
|
|
388
|
-
* @public
|
|
389
|
-
* @enum
|
|
390
|
-
*/
|
|
391
|
-
export declare const ThirdPartyFirewall: {
|
|
392
|
-
readonly FORTIGATE_CLOUD_NATIVE_FIREWALL: "FORTIGATE_CLOUD_NATIVE_FIREWALL";
|
|
393
|
-
readonly PALO_ALTO_NETWORKS_CLOUD_NGFW: "PALO_ALTO_NETWORKS_CLOUD_NGFW";
|
|
394
|
-
};
|
|
395
|
-
/**
|
|
396
|
-
* @public
|
|
397
|
-
*/
|
|
398
|
-
export type ThirdPartyFirewall = (typeof ThirdPartyFirewall)[keyof typeof ThirdPartyFirewall];
|
|
399
263
|
/**
|
|
400
264
|
* @public
|
|
401
265
|
*/
|
|
@@ -406,21 +270,6 @@ export interface AssociateThirdPartyFirewallRequest {
|
|
|
406
270
|
*/
|
|
407
271
|
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
408
272
|
}
|
|
409
|
-
/**
|
|
410
|
-
* @public
|
|
411
|
-
* @enum
|
|
412
|
-
*/
|
|
413
|
-
export declare const ThirdPartyFirewallAssociationStatus: {
|
|
414
|
-
readonly NOT_EXIST: "NOT_EXIST";
|
|
415
|
-
readonly OFFBOARDING: "OFFBOARDING";
|
|
416
|
-
readonly OFFBOARD_COMPLETE: "OFFBOARD_COMPLETE";
|
|
417
|
-
readonly ONBOARDING: "ONBOARDING";
|
|
418
|
-
readonly ONBOARD_COMPLETE: "ONBOARD_COMPLETE";
|
|
419
|
-
};
|
|
420
|
-
/**
|
|
421
|
-
* @public
|
|
422
|
-
*/
|
|
423
|
-
export type ThirdPartyFirewallAssociationStatus = (typeof ThirdPartyFirewallAssociationStatus)[keyof typeof ThirdPartyFirewallAssociationStatus];
|
|
424
273
|
/**
|
|
425
274
|
* @public
|
|
426
275
|
*/
|
|
@@ -500,22 +349,6 @@ export interface BatchAssociateResourceRequest {
|
|
|
500
349
|
*/
|
|
501
350
|
Items: string[] | undefined;
|
|
502
351
|
}
|
|
503
|
-
/**
|
|
504
|
-
* @public
|
|
505
|
-
* @enum
|
|
506
|
-
*/
|
|
507
|
-
export declare const FailedItemReason: {
|
|
508
|
-
readonly NotValidAccountId: "NOT_VALID_ACCOUNT_ID";
|
|
509
|
-
readonly NotValidArn: "NOT_VALID_ARN";
|
|
510
|
-
readonly NotValidPartition: "NOT_VALID_PARTITION";
|
|
511
|
-
readonly NotValidRegion: "NOT_VALID_REGION";
|
|
512
|
-
readonly NotValidResourceType: "NOT_VALID_RESOURCE_TYPE";
|
|
513
|
-
readonly NotValidService: "NOT_VALID_SERVICE";
|
|
514
|
-
};
|
|
515
|
-
/**
|
|
516
|
-
* @public
|
|
517
|
-
*/
|
|
518
|
-
export type FailedItemReason = (typeof FailedItemReason)[keyof typeof FailedItemReason];
|
|
519
352
|
/**
|
|
520
353
|
* <p>Details of a resource that failed when trying to update it's association to a resource set.</p>
|
|
521
354
|
* @public
|
|
@@ -797,60 +630,6 @@ export interface GetComplianceDetailRequest {
|
|
|
797
630
|
*/
|
|
798
631
|
MemberAccount: string | undefined;
|
|
799
632
|
}
|
|
800
|
-
/**
|
|
801
|
-
* @public
|
|
802
|
-
* @enum
|
|
803
|
-
*/
|
|
804
|
-
export declare const DependentServiceName: {
|
|
805
|
-
readonly AWSConfig: "AWSCONFIG";
|
|
806
|
-
readonly AWSShieldAdvanced: "AWSSHIELD_ADVANCED";
|
|
807
|
-
readonly AWSVirtualPrivateCloud: "AWSVPC";
|
|
808
|
-
readonly AWSWAF: "AWSWAF";
|
|
809
|
-
};
|
|
810
|
-
/**
|
|
811
|
-
* @public
|
|
812
|
-
*/
|
|
813
|
-
export type DependentServiceName = (typeof DependentServiceName)[keyof typeof DependentServiceName];
|
|
814
|
-
/**
|
|
815
|
-
* @public
|
|
816
|
-
* @enum
|
|
817
|
-
*/
|
|
818
|
-
export declare const ViolationReason: {
|
|
819
|
-
readonly BlackHoleRouteDetected: "BLACK_HOLE_ROUTE_DETECTED";
|
|
820
|
-
readonly BlackHoleRouteDetectedInFirewallSubnet: "BLACK_HOLE_ROUTE_DETECTED_IN_FIREWALL_SUBNET";
|
|
821
|
-
readonly FMSCreatedSecurityGroupEdited: "FMS_CREATED_SECURITY_GROUP_EDITED";
|
|
822
|
-
readonly FirewallSubnetIsOutOfScope: "FIREWALL_SUBNET_IS_OUT_OF_SCOPE";
|
|
823
|
-
readonly FirewallSubnetMissingExpectedRoute: "FIREWALL_SUBNET_MISSING_EXPECTED_ROUTE";
|
|
824
|
-
readonly FirewallSubnetMissingVPCEndpoint: "FIREWALL_SUBNET_MISSING_VPCE_ENDPOINT";
|
|
825
|
-
readonly InternetGatewayMissingExpectedRoute: "INTERNET_GATEWAY_MISSING_EXPECTED_ROUTE";
|
|
826
|
-
readonly InternetTrafficNotInspected: "INTERNET_TRAFFIC_NOT_INSPECTED";
|
|
827
|
-
readonly InvalidNetworkAclEntry: "INVALID_NETWORK_ACL_ENTRY";
|
|
828
|
-
readonly InvalidRouteConfiguration: "INVALID_ROUTE_CONFIGURATION";
|
|
829
|
-
readonly MissingExpectedRouteTable: "MISSING_EXPECTED_ROUTE_TABLE";
|
|
830
|
-
readonly MissingFirewall: "MISSING_FIREWALL";
|
|
831
|
-
readonly MissingFirewallSubnetInAZ: "MISSING_FIREWALL_SUBNET_IN_AZ";
|
|
832
|
-
readonly MissingTargetGateway: "MISSING_TARGET_GATEWAY";
|
|
833
|
-
readonly NetworkFirewallPolicyModified: "NETWORK_FIREWALL_POLICY_MODIFIED";
|
|
834
|
-
readonly ResourceIncorrectWebAcl: "RESOURCE_INCORRECT_WEB_ACL";
|
|
835
|
-
readonly ResourceMissingDnsFirewall: "RESOURCE_MISSING_DNS_FIREWALL";
|
|
836
|
-
readonly ResourceMissingSecurityGroup: "RESOURCE_MISSING_SECURITY_GROUP";
|
|
837
|
-
readonly ResourceMissingShieldProtection: "RESOURCE_MISSING_SHIELD_PROTECTION";
|
|
838
|
-
readonly ResourceMissingWebAcl: "RESOURCE_MISSING_WEB_ACL";
|
|
839
|
-
readonly ResourceMissingWebaclOrShieldProtection: "RESOURCE_MISSING_WEB_ACL_OR_SHIELD_PROTECTION";
|
|
840
|
-
readonly ResourceViolatesAuditSecurityGroup: "RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP";
|
|
841
|
-
readonly RouteHasOutOfScopeEndpoint: "ROUTE_HAS_OUT_OF_SCOPE_ENDPOINT";
|
|
842
|
-
readonly SecurityGroupRedundant: "SECURITY_GROUP_REDUNDANT";
|
|
843
|
-
readonly SecurityGroupUnused: "SECURITY_GROUP_UNUSED";
|
|
844
|
-
readonly TrafficInspectionCrossesAZBoundary: "TRAFFIC_INSPECTION_CROSSES_AZ_BOUNDARY";
|
|
845
|
-
readonly UnexpectedFirewallRoutes: "UNEXPECTED_FIREWALL_ROUTES";
|
|
846
|
-
readonly UnexpectedTargetGatewayRoutes: "UNEXPECTED_TARGET_GATEWAY_ROUTES";
|
|
847
|
-
readonly WebACLConfigurationOrScopeOfUse: "WEB_ACL_CONFIGURATION_OR_SCOPE_OF_USE";
|
|
848
|
-
readonly WebAclMissingRuleGroup: "WEB_ACL_MISSING_RULE_GROUP";
|
|
849
|
-
};
|
|
850
|
-
/**
|
|
851
|
-
* @public
|
|
852
|
-
*/
|
|
853
|
-
export type ViolationReason = (typeof ViolationReason)[keyof typeof ViolationReason];
|
|
854
633
|
/**
|
|
855
634
|
* <p>Details of the resource that is not protected by the policy.</p>
|
|
856
635
|
* @public
|
|
@@ -968,42 +747,6 @@ export interface GetPolicyRequest {
|
|
|
968
747
|
*/
|
|
969
748
|
PolicyId: string | undefined;
|
|
970
749
|
}
|
|
971
|
-
/**
|
|
972
|
-
* @public
|
|
973
|
-
* @enum
|
|
974
|
-
*/
|
|
975
|
-
export declare const CustomerPolicyScopeIdType: {
|
|
976
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
977
|
-
readonly ORG_UNIT: "ORG_UNIT";
|
|
978
|
-
};
|
|
979
|
-
/**
|
|
980
|
-
* @public
|
|
981
|
-
*/
|
|
982
|
-
export type CustomerPolicyScopeIdType = (typeof CustomerPolicyScopeIdType)[keyof typeof CustomerPolicyScopeIdType];
|
|
983
|
-
/**
|
|
984
|
-
* @public
|
|
985
|
-
* @enum
|
|
986
|
-
*/
|
|
987
|
-
export declare const CustomerPolicyStatus: {
|
|
988
|
-
readonly ACTIVE: "ACTIVE";
|
|
989
|
-
readonly OUT_OF_ADMIN_SCOPE: "OUT_OF_ADMIN_SCOPE";
|
|
990
|
-
};
|
|
991
|
-
/**
|
|
992
|
-
* @public
|
|
993
|
-
*/
|
|
994
|
-
export type CustomerPolicyStatus = (typeof CustomerPolicyStatus)[keyof typeof CustomerPolicyStatus];
|
|
995
|
-
/**
|
|
996
|
-
* @public
|
|
997
|
-
* @enum
|
|
998
|
-
*/
|
|
999
|
-
export declare const ResourceTagLogicalOperator: {
|
|
1000
|
-
readonly AND: "AND";
|
|
1001
|
-
readonly OR: "OR";
|
|
1002
|
-
};
|
|
1003
|
-
/**
|
|
1004
|
-
* @public
|
|
1005
|
-
*/
|
|
1006
|
-
export type ResourceTagLogicalOperator = (typeof ResourceTagLogicalOperator)[keyof typeof ResourceTagLogicalOperator];
|
|
1007
750
|
/**
|
|
1008
751
|
* <p>The resource tags that Firewall Manager uses to determine if a particular resource
|
|
1009
752
|
* should be included or excluded from the Firewall Manager policy. Tags enable you to
|
|
@@ -1061,18 +804,6 @@ export interface NetworkAclPortRange {
|
|
|
1061
804
|
*/
|
|
1062
805
|
To?: number | undefined;
|
|
1063
806
|
}
|
|
1064
|
-
/**
|
|
1065
|
-
* @public
|
|
1066
|
-
* @enum
|
|
1067
|
-
*/
|
|
1068
|
-
export declare const NetworkAclRuleAction: {
|
|
1069
|
-
readonly ALLOW: "allow";
|
|
1070
|
-
readonly DENY: "deny";
|
|
1071
|
-
};
|
|
1072
|
-
/**
|
|
1073
|
-
* @public
|
|
1074
|
-
*/
|
|
1075
|
-
export type NetworkAclRuleAction = (typeof NetworkAclRuleAction)[keyof typeof NetworkAclRuleAction];
|
|
1076
807
|
/**
|
|
1077
808
|
* <p>Describes a rule in a network ACL.</p>
|
|
1078
809
|
* <p>Each network ACL has a set of numbered ingress rules and a separate set of numbered egress rules. When determining
|
|
@@ -1182,18 +913,6 @@ export interface NetworkAclCommonPolicy {
|
|
|
1182
913
|
*/
|
|
1183
914
|
NetworkAclEntrySet: NetworkAclEntrySet | undefined;
|
|
1184
915
|
}
|
|
1185
|
-
/**
|
|
1186
|
-
* @public
|
|
1187
|
-
* @enum
|
|
1188
|
-
*/
|
|
1189
|
-
export declare const FirewallDeploymentModel: {
|
|
1190
|
-
readonly CENTRALIZED: "CENTRALIZED";
|
|
1191
|
-
readonly DISTRIBUTED: "DISTRIBUTED";
|
|
1192
|
-
};
|
|
1193
|
-
/**
|
|
1194
|
-
* @public
|
|
1195
|
-
*/
|
|
1196
|
-
export type FirewallDeploymentModel = (typeof FirewallDeploymentModel)[keyof typeof FirewallDeploymentModel];
|
|
1197
916
|
/**
|
|
1198
917
|
* <p>Configures the firewall policy deployment model of Network Firewall. For information about
|
|
1199
918
|
* Network Firewall deployment models, see <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/architectures.html">Network Firewall example
|
|
@@ -1718,19 +1437,6 @@ export interface GetPolicyResponse {
|
|
|
1718
1437
|
*/
|
|
1719
1438
|
PolicyArn?: string | undefined;
|
|
1720
1439
|
}
|
|
1721
|
-
/**
|
|
1722
|
-
* <p>The value of the <code>Type</code> parameter is invalid.</p>
|
|
1723
|
-
* @public
|
|
1724
|
-
*/
|
|
1725
|
-
export declare class InvalidTypeException extends __BaseException {
|
|
1726
|
-
readonly name: "InvalidTypeException";
|
|
1727
|
-
readonly $fault: "client";
|
|
1728
|
-
Message?: string | undefined;
|
|
1729
|
-
/**
|
|
1730
|
-
* @internal
|
|
1731
|
-
*/
|
|
1732
|
-
constructor(opts: __ExceptionOptionType<InvalidTypeException, __BaseException>);
|
|
1733
|
-
}
|
|
1734
1440
|
/**
|
|
1735
1441
|
* @public
|
|
1736
1442
|
*/
|
|
@@ -1910,18 +1616,6 @@ export interface GetResourceSetRequest {
|
|
|
1910
1616
|
*/
|
|
1911
1617
|
Identifier: string | undefined;
|
|
1912
1618
|
}
|
|
1913
|
-
/**
|
|
1914
|
-
* @public
|
|
1915
|
-
* @enum
|
|
1916
|
-
*/
|
|
1917
|
-
export declare const ResourceSetStatus: {
|
|
1918
|
-
readonly ACTIVE: "ACTIVE";
|
|
1919
|
-
readonly OUT_OF_ADMIN_SCOPE: "OUT_OF_ADMIN_SCOPE";
|
|
1920
|
-
};
|
|
1921
|
-
/**
|
|
1922
|
-
* @public
|
|
1923
|
-
*/
|
|
1924
|
-
export type ResourceSetStatus = (typeof ResourceSetStatus)[keyof typeof ResourceSetStatus];
|
|
1925
1619
|
/**
|
|
1926
1620
|
* <p>A set of resources to include in a policy.</p>
|
|
1927
1621
|
* @public
|
|
@@ -2003,19 +1697,6 @@ export interface GetThirdPartyFirewallAssociationStatusRequest {
|
|
|
2003
1697
|
*/
|
|
2004
1698
|
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
2005
1699
|
}
|
|
2006
|
-
/**
|
|
2007
|
-
* @public
|
|
2008
|
-
* @enum
|
|
2009
|
-
*/
|
|
2010
|
-
export declare const MarketplaceSubscriptionOnboardingStatus: {
|
|
2011
|
-
readonly COMPLETE: "COMPLETE";
|
|
2012
|
-
readonly NOT_COMPLETE: "NOT_COMPLETE";
|
|
2013
|
-
readonly NO_SUBSCRIPTION: "NO_SUBSCRIPTION";
|
|
2014
|
-
};
|
|
2015
|
-
/**
|
|
2016
|
-
* @public
|
|
2017
|
-
*/
|
|
2018
|
-
export type MarketplaceSubscriptionOnboardingStatus = (typeof MarketplaceSubscriptionOnboardingStatus)[keyof typeof MarketplaceSubscriptionOnboardingStatus];
|
|
2019
1700
|
/**
|
|
2020
1701
|
* @public
|
|
2021
1702
|
*/
|
|
@@ -2155,18 +1836,6 @@ export interface PartialMatch {
|
|
|
2155
1836
|
*/
|
|
2156
1837
|
TargetViolationReasons?: string[] | undefined;
|
|
2157
1838
|
}
|
|
2158
|
-
/**
|
|
2159
|
-
* @public
|
|
2160
|
-
* @enum
|
|
2161
|
-
*/
|
|
2162
|
-
export declare const RemediationActionType: {
|
|
2163
|
-
readonly Modify: "MODIFY";
|
|
2164
|
-
readonly Remove: "REMOVE";
|
|
2165
|
-
};
|
|
2166
|
-
/**
|
|
2167
|
-
* @public
|
|
2168
|
-
*/
|
|
2169
|
-
export type RemediationActionType = (typeof RemediationActionType)[keyof typeof RemediationActionType];
|
|
2170
1839
|
/**
|
|
2171
1840
|
* <p>Describes a set of permissions for a security group rule.</p>
|
|
2172
1841
|
* @public
|
|
@@ -2384,19 +2053,6 @@ export interface FirewallSubnetMissingVPCEndpointViolation {
|
|
|
2384
2053
|
*/
|
|
2385
2054
|
SubnetAvailabilityZoneId?: string | undefined;
|
|
2386
2055
|
}
|
|
2387
|
-
/**
|
|
2388
|
-
* @public
|
|
2389
|
-
* @enum
|
|
2390
|
-
*/
|
|
2391
|
-
export declare const EntryType: {
|
|
2392
|
-
readonly CustomEntry: "CUSTOM_ENTRY";
|
|
2393
|
-
readonly FMSManagedFirstEntry: "FMS_MANAGED_FIRST_ENTRY";
|
|
2394
|
-
readonly FMSManagedLastEntry: "FMS_MANAGED_LAST_ENTRY";
|
|
2395
|
-
};
|
|
2396
|
-
/**
|
|
2397
|
-
* @public
|
|
2398
|
-
*/
|
|
2399
|
-
export type EntryType = (typeof EntryType)[keyof typeof EntryType];
|
|
2400
2056
|
/**
|
|
2401
2057
|
* <p>Describes a single rule in a network ACL.</p>
|
|
2402
2058
|
* @public
|
|
@@ -2426,19 +2082,6 @@ export interface EntryDescription {
|
|
|
2426
2082
|
*/
|
|
2427
2083
|
EntryType?: EntryType | undefined;
|
|
2428
2084
|
}
|
|
2429
|
-
/**
|
|
2430
|
-
* @public
|
|
2431
|
-
* @enum
|
|
2432
|
-
*/
|
|
2433
|
-
export declare const EntryViolationReason: {
|
|
2434
|
-
readonly EntryConflict: "ENTRY_CONFLICT";
|
|
2435
|
-
readonly IncorrectEntryOrder: "INCORRECT_ENTRY_ORDER";
|
|
2436
|
-
readonly MissingExpectedEntry: "MISSING_EXPECTED_ENTRY";
|
|
2437
|
-
};
|
|
2438
|
-
/**
|
|
2439
|
-
* @public
|
|
2440
|
-
*/
|
|
2441
|
-
export type EntryViolationReason = (typeof EntryViolationReason)[keyof typeof EntryViolationReason];
|
|
2442
2085
|
/**
|
|
2443
2086
|
* <p>Detailed information about an entry violation in a network ACL. The violation is against the network ACL specification inside the
|
|
2444
2087
|
* Firewall Manager network ACL policy. This data object is part of <code>InvalidNetworkAclEntriesViolation</code>.</p>
|
|
@@ -2507,39 +2150,6 @@ export interface InvalidNetworkAclEntriesViolation {
|
|
|
2507
2150
|
*/
|
|
2508
2151
|
EntryViolations?: EntryViolation[] | undefined;
|
|
2509
2152
|
}
|
|
2510
|
-
/**
|
|
2511
|
-
* @public
|
|
2512
|
-
* @enum
|
|
2513
|
-
*/
|
|
2514
|
-
export declare const DestinationType: {
|
|
2515
|
-
readonly IPV4: "IPV4";
|
|
2516
|
-
readonly IPV6: "IPV6";
|
|
2517
|
-
readonly PrefixList: "PREFIX_LIST";
|
|
2518
|
-
};
|
|
2519
|
-
/**
|
|
2520
|
-
* @public
|
|
2521
|
-
*/
|
|
2522
|
-
export type DestinationType = (typeof DestinationType)[keyof typeof DestinationType];
|
|
2523
|
-
/**
|
|
2524
|
-
* @public
|
|
2525
|
-
* @enum
|
|
2526
|
-
*/
|
|
2527
|
-
export declare const TargetType: {
|
|
2528
|
-
readonly CarrierGateway: "CARRIER_GATEWAY";
|
|
2529
|
-
readonly EgressOnlyInternetGateway: "EGRESS_ONLY_INTERNET_GATEWAY";
|
|
2530
|
-
readonly Gateway: "GATEWAY";
|
|
2531
|
-
readonly Instance: "INSTANCE";
|
|
2532
|
-
readonly LocalGateway: "LOCAL_GATEWAY";
|
|
2533
|
-
readonly NatGateway: "NAT_GATEWAY";
|
|
2534
|
-
readonly NetworkInterface: "NETWORK_INTERFACE";
|
|
2535
|
-
readonly TransitGateway: "TRANSIT_GATEWAY";
|
|
2536
|
-
readonly VPCEndpoint: "VPC_ENDPOINT";
|
|
2537
|
-
readonly VPCPeeringConnection: "VPC_PEERING_CONNECTION";
|
|
2538
|
-
};
|
|
2539
|
-
/**
|
|
2540
|
-
* @public
|
|
2541
|
-
*/
|
|
2542
|
-
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
2543
2153
|
/**
|
|
2544
2154
|
* <p>Describes a route in a route table.</p>
|
|
2545
2155
|
* @public
|
|
@@ -2903,32 +2513,6 @@ export interface NetworkFirewallMissingSubnetViolation {
|
|
|
2903
2513
|
*/
|
|
2904
2514
|
TargetViolationReason?: string | undefined;
|
|
2905
2515
|
}
|
|
2906
|
-
/**
|
|
2907
|
-
* @public
|
|
2908
|
-
* @enum
|
|
2909
|
-
*/
|
|
2910
|
-
export declare const RuleOrder: {
|
|
2911
|
-
readonly DEFAULT_ACTION_ORDER: "DEFAULT_ACTION_ORDER";
|
|
2912
|
-
readonly STRICT_ORDER: "STRICT_ORDER";
|
|
2913
|
-
};
|
|
2914
|
-
/**
|
|
2915
|
-
* @public
|
|
2916
|
-
*/
|
|
2917
|
-
export type RuleOrder = (typeof RuleOrder)[keyof typeof RuleOrder];
|
|
2918
|
-
/**
|
|
2919
|
-
* @public
|
|
2920
|
-
* @enum
|
|
2921
|
-
*/
|
|
2922
|
-
export declare const StreamExceptionPolicy: {
|
|
2923
|
-
readonly CONTINUE: "CONTINUE";
|
|
2924
|
-
readonly DROP: "DROP";
|
|
2925
|
-
readonly FMS_IGNORE: "FMS_IGNORE";
|
|
2926
|
-
readonly REJECT: "REJECT";
|
|
2927
|
-
};
|
|
2928
|
-
/**
|
|
2929
|
-
* @public
|
|
2930
|
-
*/
|
|
2931
|
-
export type StreamExceptionPolicy = (typeof StreamExceptionPolicy)[keyof typeof StreamExceptionPolicy];
|
|
2932
2516
|
/**
|
|
2933
2517
|
* <p>Configuration settings for the handling of the stateful rule groups in a Network Firewall firewall policy.</p>
|
|
2934
2518
|
* @public
|
|
@@ -2974,17 +2558,6 @@ export interface StatefulEngineOptions {
|
|
|
2974
2558
|
*/
|
|
2975
2559
|
StreamExceptionPolicy?: StreamExceptionPolicy | undefined;
|
|
2976
2560
|
}
|
|
2977
|
-
/**
|
|
2978
|
-
* @public
|
|
2979
|
-
* @enum
|
|
2980
|
-
*/
|
|
2981
|
-
export declare const NetworkFirewallOverrideAction: {
|
|
2982
|
-
readonly DROP_TO_ALERT: "DROP_TO_ALERT";
|
|
2983
|
-
};
|
|
2984
|
-
/**
|
|
2985
|
-
* @public
|
|
2986
|
-
*/
|
|
2987
|
-
export type NetworkFirewallOverrideAction = (typeof NetworkFirewallOverrideAction)[keyof typeof NetworkFirewallOverrideAction];
|
|
2988
2561
|
/**
|
|
2989
2562
|
* <p>The setting that allows the policy owner to change the behavior of the rule group within a policy.</p>
|
|
2990
2563
|
* @public
|
|
@@ -4147,18 +3720,6 @@ export interface ListComplianceStatusRequest {
|
|
|
4147
3720
|
*/
|
|
4148
3721
|
MaxResults?: number | undefined;
|
|
4149
3722
|
}
|
|
4150
|
-
/**
|
|
4151
|
-
* @public
|
|
4152
|
-
* @enum
|
|
4153
|
-
*/
|
|
4154
|
-
export declare const PolicyComplianceStatusType: {
|
|
4155
|
-
readonly Compliant: "COMPLIANT";
|
|
4156
|
-
readonly NonCompliant: "NON_COMPLIANT";
|
|
4157
|
-
};
|
|
4158
|
-
/**
|
|
4159
|
-
* @public
|
|
4160
|
-
*/
|
|
4161
|
-
export type PolicyComplianceStatusType = (typeof PolicyComplianceStatusType)[keyof typeof PolicyComplianceStatusType];
|
|
4162
3723
|
/**
|
|
4163
3724
|
* <p>Describes the compliance status for the account. An account is considered noncompliant if
|
|
4164
3725
|
* it includes resources that are not protected by the specified policy or that don't comply with
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { FMSExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { FMSServiceException } from "./models/FMSServiceException";
|