@aws-sdk/client-fms 3.933.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.
@@ -0,0 +1,205 @@
1
+ export declare const AccountRoleStatus: {
2
+ readonly Creating: "CREATING";
3
+ readonly Deleted: "DELETED";
4
+ readonly Deleting: "DELETING";
5
+ readonly PendingDeletion: "PENDING_DELETION";
6
+ readonly Ready: "READY";
7
+ };
8
+ export type AccountRoleStatus =
9
+ (typeof AccountRoleStatus)[keyof typeof AccountRoleStatus];
10
+ export declare const OrganizationStatus: {
11
+ readonly Offboarding: "OFFBOARDING";
12
+ readonly OffboardingComplete: "OFFBOARDING_COMPLETE";
13
+ readonly Onboarding: "ONBOARDING";
14
+ readonly OnboardingComplete: "ONBOARDING_COMPLETE";
15
+ };
16
+ export type OrganizationStatus =
17
+ (typeof OrganizationStatus)[keyof typeof OrganizationStatus];
18
+ export declare const SecurityServiceType: {
19
+ readonly DNS_FIREWALL: "DNS_FIREWALL";
20
+ readonly IMPORT_NETWORK_FIREWALL: "IMPORT_NETWORK_FIREWALL";
21
+ readonly NETWORK_ACL_COMMON: "NETWORK_ACL_COMMON";
22
+ readonly NETWORK_FIREWALL: "NETWORK_FIREWALL";
23
+ readonly SECURITY_GROUPS_COMMON: "SECURITY_GROUPS_COMMON";
24
+ readonly SECURITY_GROUPS_CONTENT_AUDIT: "SECURITY_GROUPS_CONTENT_AUDIT";
25
+ readonly SECURITY_GROUPS_USAGE_AUDIT: "SECURITY_GROUPS_USAGE_AUDIT";
26
+ readonly SHIELD_ADVANCED: "SHIELD_ADVANCED";
27
+ readonly THIRD_PARTY_FIREWALL: "THIRD_PARTY_FIREWALL";
28
+ readonly WAF: "WAF";
29
+ readonly WAFV2: "WAFV2";
30
+ };
31
+ export type SecurityServiceType =
32
+ (typeof SecurityServiceType)[keyof typeof SecurityServiceType];
33
+ export declare const ThirdPartyFirewall: {
34
+ readonly FORTIGATE_CLOUD_NATIVE_FIREWALL: "FORTIGATE_CLOUD_NATIVE_FIREWALL";
35
+ readonly PALO_ALTO_NETWORKS_CLOUD_NGFW: "PALO_ALTO_NETWORKS_CLOUD_NGFW";
36
+ };
37
+ export type ThirdPartyFirewall =
38
+ (typeof ThirdPartyFirewall)[keyof typeof ThirdPartyFirewall];
39
+ export declare const ThirdPartyFirewallAssociationStatus: {
40
+ readonly NOT_EXIST: "NOT_EXIST";
41
+ readonly OFFBOARDING: "OFFBOARDING";
42
+ readonly OFFBOARD_COMPLETE: "OFFBOARD_COMPLETE";
43
+ readonly ONBOARDING: "ONBOARDING";
44
+ readonly ONBOARD_COMPLETE: "ONBOARD_COMPLETE";
45
+ };
46
+ export type ThirdPartyFirewallAssociationStatus =
47
+ (typeof ThirdPartyFirewallAssociationStatus)[keyof typeof ThirdPartyFirewallAssociationStatus];
48
+ export declare const FailedItemReason: {
49
+ readonly NotValidAccountId: "NOT_VALID_ACCOUNT_ID";
50
+ readonly NotValidArn: "NOT_VALID_ARN";
51
+ readonly NotValidPartition: "NOT_VALID_PARTITION";
52
+ readonly NotValidRegion: "NOT_VALID_REGION";
53
+ readonly NotValidResourceType: "NOT_VALID_RESOURCE_TYPE";
54
+ readonly NotValidService: "NOT_VALID_SERVICE";
55
+ };
56
+ export type FailedItemReason =
57
+ (typeof FailedItemReason)[keyof typeof FailedItemReason];
58
+ export declare const DependentServiceName: {
59
+ readonly AWSConfig: "AWSCONFIG";
60
+ readonly AWSShieldAdvanced: "AWSSHIELD_ADVANCED";
61
+ readonly AWSVirtualPrivateCloud: "AWSVPC";
62
+ readonly AWSWAF: "AWSWAF";
63
+ };
64
+ export type DependentServiceName =
65
+ (typeof DependentServiceName)[keyof typeof DependentServiceName];
66
+ export declare const ViolationReason: {
67
+ readonly BlackHoleRouteDetected: "BLACK_HOLE_ROUTE_DETECTED";
68
+ readonly BlackHoleRouteDetectedInFirewallSubnet: "BLACK_HOLE_ROUTE_DETECTED_IN_FIREWALL_SUBNET";
69
+ readonly FMSCreatedSecurityGroupEdited: "FMS_CREATED_SECURITY_GROUP_EDITED";
70
+ readonly FirewallSubnetIsOutOfScope: "FIREWALL_SUBNET_IS_OUT_OF_SCOPE";
71
+ readonly FirewallSubnetMissingExpectedRoute: "FIREWALL_SUBNET_MISSING_EXPECTED_ROUTE";
72
+ readonly FirewallSubnetMissingVPCEndpoint: "FIREWALL_SUBNET_MISSING_VPCE_ENDPOINT";
73
+ readonly InternetGatewayMissingExpectedRoute: "INTERNET_GATEWAY_MISSING_EXPECTED_ROUTE";
74
+ readonly InternetTrafficNotInspected: "INTERNET_TRAFFIC_NOT_INSPECTED";
75
+ readonly InvalidNetworkAclEntry: "INVALID_NETWORK_ACL_ENTRY";
76
+ readonly InvalidRouteConfiguration: "INVALID_ROUTE_CONFIGURATION";
77
+ readonly MissingExpectedRouteTable: "MISSING_EXPECTED_ROUTE_TABLE";
78
+ readonly MissingFirewall: "MISSING_FIREWALL";
79
+ readonly MissingFirewallSubnetInAZ: "MISSING_FIREWALL_SUBNET_IN_AZ";
80
+ readonly MissingTargetGateway: "MISSING_TARGET_GATEWAY";
81
+ readonly NetworkFirewallPolicyModified: "NETWORK_FIREWALL_POLICY_MODIFIED";
82
+ readonly ResourceIncorrectWebAcl: "RESOURCE_INCORRECT_WEB_ACL";
83
+ readonly ResourceMissingDnsFirewall: "RESOURCE_MISSING_DNS_FIREWALL";
84
+ readonly ResourceMissingSecurityGroup: "RESOURCE_MISSING_SECURITY_GROUP";
85
+ readonly ResourceMissingShieldProtection: "RESOURCE_MISSING_SHIELD_PROTECTION";
86
+ readonly ResourceMissingWebAcl: "RESOURCE_MISSING_WEB_ACL";
87
+ readonly ResourceMissingWebaclOrShieldProtection: "RESOURCE_MISSING_WEB_ACL_OR_SHIELD_PROTECTION";
88
+ readonly ResourceViolatesAuditSecurityGroup: "RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP";
89
+ readonly RouteHasOutOfScopeEndpoint: "ROUTE_HAS_OUT_OF_SCOPE_ENDPOINT";
90
+ readonly SecurityGroupRedundant: "SECURITY_GROUP_REDUNDANT";
91
+ readonly SecurityGroupUnused: "SECURITY_GROUP_UNUSED";
92
+ readonly TrafficInspectionCrossesAZBoundary: "TRAFFIC_INSPECTION_CROSSES_AZ_BOUNDARY";
93
+ readonly UnexpectedFirewallRoutes: "UNEXPECTED_FIREWALL_ROUTES";
94
+ readonly UnexpectedTargetGatewayRoutes: "UNEXPECTED_TARGET_GATEWAY_ROUTES";
95
+ readonly WebACLConfigurationOrScopeOfUse: "WEB_ACL_CONFIGURATION_OR_SCOPE_OF_USE";
96
+ readonly WebAclMissingRuleGroup: "WEB_ACL_MISSING_RULE_GROUP";
97
+ };
98
+ export type ViolationReason =
99
+ (typeof ViolationReason)[keyof typeof ViolationReason];
100
+ export declare const CustomerPolicyScopeIdType: {
101
+ readonly ACCOUNT: "ACCOUNT";
102
+ readonly ORG_UNIT: "ORG_UNIT";
103
+ };
104
+ export type CustomerPolicyScopeIdType =
105
+ (typeof CustomerPolicyScopeIdType)[keyof typeof CustomerPolicyScopeIdType];
106
+ export declare const CustomerPolicyStatus: {
107
+ readonly ACTIVE: "ACTIVE";
108
+ readonly OUT_OF_ADMIN_SCOPE: "OUT_OF_ADMIN_SCOPE";
109
+ };
110
+ export type CustomerPolicyStatus =
111
+ (typeof CustomerPolicyStatus)[keyof typeof CustomerPolicyStatus];
112
+ export declare const ResourceTagLogicalOperator: {
113
+ readonly AND: "AND";
114
+ readonly OR: "OR";
115
+ };
116
+ export type ResourceTagLogicalOperator =
117
+ (typeof ResourceTagLogicalOperator)[keyof typeof ResourceTagLogicalOperator];
118
+ export declare const NetworkAclRuleAction: {
119
+ readonly ALLOW: "allow";
120
+ readonly DENY: "deny";
121
+ };
122
+ export type NetworkAclRuleAction =
123
+ (typeof NetworkAclRuleAction)[keyof typeof NetworkAclRuleAction];
124
+ export declare const FirewallDeploymentModel: {
125
+ readonly CENTRALIZED: "CENTRALIZED";
126
+ readonly DISTRIBUTED: "DISTRIBUTED";
127
+ };
128
+ export type FirewallDeploymentModel =
129
+ (typeof FirewallDeploymentModel)[keyof typeof FirewallDeploymentModel];
130
+ export declare const ResourceSetStatus: {
131
+ readonly ACTIVE: "ACTIVE";
132
+ readonly OUT_OF_ADMIN_SCOPE: "OUT_OF_ADMIN_SCOPE";
133
+ };
134
+ export type ResourceSetStatus =
135
+ (typeof ResourceSetStatus)[keyof typeof ResourceSetStatus];
136
+ export declare const MarketplaceSubscriptionOnboardingStatus: {
137
+ readonly COMPLETE: "COMPLETE";
138
+ readonly NOT_COMPLETE: "NOT_COMPLETE";
139
+ readonly NO_SUBSCRIPTION: "NO_SUBSCRIPTION";
140
+ };
141
+ export type MarketplaceSubscriptionOnboardingStatus =
142
+ (typeof MarketplaceSubscriptionOnboardingStatus)[keyof typeof MarketplaceSubscriptionOnboardingStatus];
143
+ export declare const RemediationActionType: {
144
+ readonly Modify: "MODIFY";
145
+ readonly Remove: "REMOVE";
146
+ };
147
+ export type RemediationActionType =
148
+ (typeof RemediationActionType)[keyof typeof RemediationActionType];
149
+ export declare const EntryType: {
150
+ readonly CustomEntry: "CUSTOM_ENTRY";
151
+ readonly FMSManagedFirstEntry: "FMS_MANAGED_FIRST_ENTRY";
152
+ readonly FMSManagedLastEntry: "FMS_MANAGED_LAST_ENTRY";
153
+ };
154
+ export type EntryType = (typeof EntryType)[keyof typeof EntryType];
155
+ export declare const EntryViolationReason: {
156
+ readonly EntryConflict: "ENTRY_CONFLICT";
157
+ readonly IncorrectEntryOrder: "INCORRECT_ENTRY_ORDER";
158
+ readonly MissingExpectedEntry: "MISSING_EXPECTED_ENTRY";
159
+ };
160
+ export type EntryViolationReason =
161
+ (typeof EntryViolationReason)[keyof typeof EntryViolationReason];
162
+ export declare const DestinationType: {
163
+ readonly IPV4: "IPV4";
164
+ readonly IPV6: "IPV6";
165
+ readonly PrefixList: "PREFIX_LIST";
166
+ };
167
+ export type DestinationType =
168
+ (typeof DestinationType)[keyof typeof DestinationType];
169
+ export declare const TargetType: {
170
+ readonly CarrierGateway: "CARRIER_GATEWAY";
171
+ readonly EgressOnlyInternetGateway: "EGRESS_ONLY_INTERNET_GATEWAY";
172
+ readonly Gateway: "GATEWAY";
173
+ readonly Instance: "INSTANCE";
174
+ readonly LocalGateway: "LOCAL_GATEWAY";
175
+ readonly NatGateway: "NAT_GATEWAY";
176
+ readonly NetworkInterface: "NETWORK_INTERFACE";
177
+ readonly TransitGateway: "TRANSIT_GATEWAY";
178
+ readonly VPCEndpoint: "VPC_ENDPOINT";
179
+ readonly VPCPeeringConnection: "VPC_PEERING_CONNECTION";
180
+ };
181
+ export type TargetType = (typeof TargetType)[keyof typeof TargetType];
182
+ export declare const RuleOrder: {
183
+ readonly DEFAULT_ACTION_ORDER: "DEFAULT_ACTION_ORDER";
184
+ readonly STRICT_ORDER: "STRICT_ORDER";
185
+ };
186
+ export type RuleOrder = (typeof RuleOrder)[keyof typeof RuleOrder];
187
+ export declare const StreamExceptionPolicy: {
188
+ readonly CONTINUE: "CONTINUE";
189
+ readonly DROP: "DROP";
190
+ readonly FMS_IGNORE: "FMS_IGNORE";
191
+ readonly REJECT: "REJECT";
192
+ };
193
+ export type StreamExceptionPolicy =
194
+ (typeof StreamExceptionPolicy)[keyof typeof StreamExceptionPolicy];
195
+ export declare const NetworkFirewallOverrideAction: {
196
+ readonly DROP_TO_ALERT: "DROP_TO_ALERT";
197
+ };
198
+ export type NetworkFirewallOverrideAction =
199
+ (typeof NetworkFirewallOverrideAction)[keyof typeof NetworkFirewallOverrideAction];
200
+ export declare const PolicyComplianceStatusType: {
201
+ readonly Compliant: "COMPLIANT";
202
+ readonly NonCompliant: "NON_COMPLIANT";
203
+ };
204
+ export type PolicyComplianceStatusType =
205
+ (typeof PolicyComplianceStatusType)[keyof typeof PolicyComplianceStatusType];
@@ -0,0 +1,50 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { FMSServiceException as __BaseException } from "./FMSServiceException";
3
+ export declare class InternalErrorException extends __BaseException {
4
+ readonly name: "InternalErrorException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<InternalErrorException, __BaseException>
9
+ );
10
+ }
11
+ export declare class InvalidInputException extends __BaseException {
12
+ readonly name: "InvalidInputException";
13
+ readonly $fault: "client";
14
+ Message?: string | undefined;
15
+ constructor(
16
+ opts: __ExceptionOptionType<InvalidInputException, __BaseException>
17
+ );
18
+ }
19
+ export declare class InvalidOperationException extends __BaseException {
20
+ readonly name: "InvalidOperationException";
21
+ readonly $fault: "client";
22
+ Message?: string | undefined;
23
+ constructor(
24
+ opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
25
+ );
26
+ }
27
+ export declare class LimitExceededException extends __BaseException {
28
+ readonly name: "LimitExceededException";
29
+ readonly $fault: "client";
30
+ Message?: string | undefined;
31
+ constructor(
32
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
33
+ );
34
+ }
35
+ export declare class ResourceNotFoundException extends __BaseException {
36
+ readonly name: "ResourceNotFoundException";
37
+ readonly $fault: "client";
38
+ Message?: string | undefined;
39
+ constructor(
40
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
41
+ );
42
+ }
43
+ export declare class InvalidTypeException extends __BaseException {
44
+ readonly name: "InvalidTypeException";
45
+ readonly $fault: "client";
46
+ Message?: string | undefined;
47
+ constructor(
48
+ opts: __ExceptionOptionType<InvalidTypeException, __BaseException>
49
+ );
50
+ }
@@ -1,14 +1,29 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { FMSServiceException as __BaseException } from "./FMSServiceException";
3
- export declare const AccountRoleStatus: {
4
- readonly Creating: "CREATING";
5
- readonly Deleted: "DELETED";
6
- readonly Deleting: "DELETING";
7
- readonly PendingDeletion: "PENDING_DELETION";
8
- readonly Ready: "READY";
9
- };
10
- export type AccountRoleStatus =
11
- (typeof AccountRoleStatus)[keyof typeof AccountRoleStatus];
1
+ import {
2
+ AccountRoleStatus,
3
+ CustomerPolicyScopeIdType,
4
+ CustomerPolicyStatus,
5
+ DependentServiceName,
6
+ DestinationType,
7
+ EntryType,
8
+ EntryViolationReason,
9
+ FailedItemReason,
10
+ FirewallDeploymentModel,
11
+ MarketplaceSubscriptionOnboardingStatus,
12
+ NetworkAclRuleAction,
13
+ NetworkFirewallOverrideAction,
14
+ OrganizationStatus,
15
+ PolicyComplianceStatusType,
16
+ RemediationActionType,
17
+ ResourceSetStatus,
18
+ ResourceTagLogicalOperator,
19
+ RuleOrder,
20
+ SecurityServiceType,
21
+ StreamExceptionPolicy,
22
+ TargetType,
23
+ ThirdPartyFirewall,
24
+ ThirdPartyFirewallAssociationStatus,
25
+ ViolationReason,
26
+ } from "./enums";
12
27
  export interface AccountScope {
13
28
  Accounts?: string[] | undefined;
14
29
  AllAccountsEnabled?: boolean | undefined;
@@ -18,14 +33,6 @@ export interface ActionTarget {
18
33
  ResourceId?: string | undefined;
19
34
  Description?: string | undefined;
20
35
  }
21
- export declare const OrganizationStatus: {
22
- readonly Offboarding: "OFFBOARDING";
23
- readonly OffboardingComplete: "OFFBOARDING_COMPLETE";
24
- readonly Onboarding: "ONBOARDING";
25
- readonly OnboardingComplete: "ONBOARDING_COMPLETE";
26
- };
27
- export type OrganizationStatus =
28
- (typeof OrganizationStatus)[keyof typeof OrganizationStatus];
29
36
  export interface AdminAccountSummary {
30
37
  AdminAccount?: string | undefined;
31
38
  DefaultAdmin?: boolean | undefined;
@@ -36,21 +43,6 @@ export interface OrganizationalUnitScope {
36
43
  AllOrganizationalUnitsEnabled?: boolean | undefined;
37
44
  ExcludeSpecifiedOrganizationalUnits?: boolean | undefined;
38
45
  }
39
- export declare const SecurityServiceType: {
40
- readonly DNS_FIREWALL: "DNS_FIREWALL";
41
- readonly IMPORT_NETWORK_FIREWALL: "IMPORT_NETWORK_FIREWALL";
42
- readonly NETWORK_ACL_COMMON: "NETWORK_ACL_COMMON";
43
- readonly NETWORK_FIREWALL: "NETWORK_FIREWALL";
44
- readonly SECURITY_GROUPS_COMMON: "SECURITY_GROUPS_COMMON";
45
- readonly SECURITY_GROUPS_CONTENT_AUDIT: "SECURITY_GROUPS_CONTENT_AUDIT";
46
- readonly SECURITY_GROUPS_USAGE_AUDIT: "SECURITY_GROUPS_USAGE_AUDIT";
47
- readonly SHIELD_ADVANCED: "SHIELD_ADVANCED";
48
- readonly THIRD_PARTY_FIREWALL: "THIRD_PARTY_FIREWALL";
49
- readonly WAF: "WAF";
50
- readonly WAFV2: "WAFV2";
51
- };
52
- export type SecurityServiceType =
53
- (typeof SecurityServiceType)[keyof typeof SecurityServiceType];
54
46
  export interface PolicyTypeScope {
55
47
  PolicyTypes?: SecurityServiceType[] | undefined;
56
48
  AllPolicyTypesEnabled?: boolean | undefined;
@@ -88,64 +80,9 @@ export interface AppsListDataSummary {
88
80
  export interface AssociateAdminAccountRequest {
89
81
  AdminAccount: string | undefined;
90
82
  }
91
- export declare class InternalErrorException extends __BaseException {
92
- readonly name: "InternalErrorException";
93
- readonly $fault: "client";
94
- Message?: string | undefined;
95
- constructor(
96
- opts: __ExceptionOptionType<InternalErrorException, __BaseException>
97
- );
98
- }
99
- export declare class InvalidInputException extends __BaseException {
100
- readonly name: "InvalidInputException";
101
- readonly $fault: "client";
102
- Message?: string | undefined;
103
- constructor(
104
- opts: __ExceptionOptionType<InvalidInputException, __BaseException>
105
- );
106
- }
107
- export declare class InvalidOperationException extends __BaseException {
108
- readonly name: "InvalidOperationException";
109
- readonly $fault: "client";
110
- Message?: string | undefined;
111
- constructor(
112
- opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
113
- );
114
- }
115
- export declare class LimitExceededException extends __BaseException {
116
- readonly name: "LimitExceededException";
117
- readonly $fault: "client";
118
- Message?: string | undefined;
119
- constructor(
120
- opts: __ExceptionOptionType<LimitExceededException, __BaseException>
121
- );
122
- }
123
- export declare class ResourceNotFoundException extends __BaseException {
124
- readonly name: "ResourceNotFoundException";
125
- readonly $fault: "client";
126
- Message?: string | undefined;
127
- constructor(
128
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
129
- );
130
- }
131
- export declare const ThirdPartyFirewall: {
132
- readonly FORTIGATE_CLOUD_NATIVE_FIREWALL: "FORTIGATE_CLOUD_NATIVE_FIREWALL";
133
- readonly PALO_ALTO_NETWORKS_CLOUD_NGFW: "PALO_ALTO_NETWORKS_CLOUD_NGFW";
134
- };
135
- export type ThirdPartyFirewall =
136
- (typeof ThirdPartyFirewall)[keyof typeof ThirdPartyFirewall];
137
83
  export interface AssociateThirdPartyFirewallRequest {
138
84
  ThirdPartyFirewall: ThirdPartyFirewall | undefined;
139
85
  }
140
- export declare const ThirdPartyFirewallAssociationStatus: {
141
- readonly NOT_EXIST: "NOT_EXIST";
142
- readonly OFFBOARDING: "OFFBOARDING";
143
- readonly OFFBOARD_COMPLETE: "OFFBOARD_COMPLETE";
144
- readonly ONBOARDING: "ONBOARDING";
145
- readonly ONBOARD_COMPLETE: "ONBOARD_COMPLETE";
146
- };
147
- export type ThirdPartyFirewallAssociationStatus =
148
- (typeof ThirdPartyFirewallAssociationStatus)[keyof typeof ThirdPartyFirewallAssociationStatus];
149
86
  export interface AssociateThirdPartyFirewallResponse {
150
87
  ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | undefined;
151
88
  }
@@ -163,16 +100,6 @@ export interface BatchAssociateResourceRequest {
163
100
  ResourceSetIdentifier: string | undefined;
164
101
  Items: string[] | undefined;
165
102
  }
166
- export declare const FailedItemReason: {
167
- readonly NotValidAccountId: "NOT_VALID_ACCOUNT_ID";
168
- readonly NotValidArn: "NOT_VALID_ARN";
169
- readonly NotValidPartition: "NOT_VALID_PARTITION";
170
- readonly NotValidRegion: "NOT_VALID_REGION";
171
- readonly NotValidResourceType: "NOT_VALID_RESOURCE_TYPE";
172
- readonly NotValidService: "NOT_VALID_SERVICE";
173
- };
174
- export type FailedItemReason =
175
- (typeof FailedItemReason)[keyof typeof FailedItemReason];
176
103
  export interface FailedItem {
177
104
  URI?: string | undefined;
178
105
  Reason?: FailedItemReason | undefined;
@@ -234,48 +161,6 @@ export interface GetComplianceDetailRequest {
234
161
  PolicyId: string | undefined;
235
162
  MemberAccount: string | undefined;
236
163
  }
237
- export declare const DependentServiceName: {
238
- readonly AWSConfig: "AWSCONFIG";
239
- readonly AWSShieldAdvanced: "AWSSHIELD_ADVANCED";
240
- readonly AWSVirtualPrivateCloud: "AWSVPC";
241
- readonly AWSWAF: "AWSWAF";
242
- };
243
- export type DependentServiceName =
244
- (typeof DependentServiceName)[keyof typeof DependentServiceName];
245
- export declare const ViolationReason: {
246
- readonly BlackHoleRouteDetected: "BLACK_HOLE_ROUTE_DETECTED";
247
- readonly BlackHoleRouteDetectedInFirewallSubnet: "BLACK_HOLE_ROUTE_DETECTED_IN_FIREWALL_SUBNET";
248
- readonly FMSCreatedSecurityGroupEdited: "FMS_CREATED_SECURITY_GROUP_EDITED";
249
- readonly FirewallSubnetIsOutOfScope: "FIREWALL_SUBNET_IS_OUT_OF_SCOPE";
250
- readonly FirewallSubnetMissingExpectedRoute: "FIREWALL_SUBNET_MISSING_EXPECTED_ROUTE";
251
- readonly FirewallSubnetMissingVPCEndpoint: "FIREWALL_SUBNET_MISSING_VPCE_ENDPOINT";
252
- readonly InternetGatewayMissingExpectedRoute: "INTERNET_GATEWAY_MISSING_EXPECTED_ROUTE";
253
- readonly InternetTrafficNotInspected: "INTERNET_TRAFFIC_NOT_INSPECTED";
254
- readonly InvalidNetworkAclEntry: "INVALID_NETWORK_ACL_ENTRY";
255
- readonly InvalidRouteConfiguration: "INVALID_ROUTE_CONFIGURATION";
256
- readonly MissingExpectedRouteTable: "MISSING_EXPECTED_ROUTE_TABLE";
257
- readonly MissingFirewall: "MISSING_FIREWALL";
258
- readonly MissingFirewallSubnetInAZ: "MISSING_FIREWALL_SUBNET_IN_AZ";
259
- readonly MissingTargetGateway: "MISSING_TARGET_GATEWAY";
260
- readonly NetworkFirewallPolicyModified: "NETWORK_FIREWALL_POLICY_MODIFIED";
261
- readonly ResourceIncorrectWebAcl: "RESOURCE_INCORRECT_WEB_ACL";
262
- readonly ResourceMissingDnsFirewall: "RESOURCE_MISSING_DNS_FIREWALL";
263
- readonly ResourceMissingSecurityGroup: "RESOURCE_MISSING_SECURITY_GROUP";
264
- readonly ResourceMissingShieldProtection: "RESOURCE_MISSING_SHIELD_PROTECTION";
265
- readonly ResourceMissingWebAcl: "RESOURCE_MISSING_WEB_ACL";
266
- readonly ResourceMissingWebaclOrShieldProtection: "RESOURCE_MISSING_WEB_ACL_OR_SHIELD_PROTECTION";
267
- readonly ResourceViolatesAuditSecurityGroup: "RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP";
268
- readonly RouteHasOutOfScopeEndpoint: "ROUTE_HAS_OUT_OF_SCOPE_ENDPOINT";
269
- readonly SecurityGroupRedundant: "SECURITY_GROUP_REDUNDANT";
270
- readonly SecurityGroupUnused: "SECURITY_GROUP_UNUSED";
271
- readonly TrafficInspectionCrossesAZBoundary: "TRAFFIC_INSPECTION_CROSSES_AZ_BOUNDARY";
272
- readonly UnexpectedFirewallRoutes: "UNEXPECTED_FIREWALL_ROUTES";
273
- readonly UnexpectedTargetGatewayRoutes: "UNEXPECTED_TARGET_GATEWAY_ROUTES";
274
- readonly WebACLConfigurationOrScopeOfUse: "WEB_ACL_CONFIGURATION_OR_SCOPE_OF_USE";
275
- readonly WebAclMissingRuleGroup: "WEB_ACL_MISSING_RULE_GROUP";
276
- };
277
- export type ViolationReason =
278
- (typeof ViolationReason)[keyof typeof ViolationReason];
279
164
  export interface ComplianceViolator {
280
165
  ResourceId?: string | undefined;
281
166
  ViolationReason?: ViolationReason | undefined;
@@ -302,24 +187,6 @@ export interface GetNotificationChannelResponse {
302
187
  export interface GetPolicyRequest {
303
188
  PolicyId: string | undefined;
304
189
  }
305
- export declare const CustomerPolicyScopeIdType: {
306
- readonly ACCOUNT: "ACCOUNT";
307
- readonly ORG_UNIT: "ORG_UNIT";
308
- };
309
- export type CustomerPolicyScopeIdType =
310
- (typeof CustomerPolicyScopeIdType)[keyof typeof CustomerPolicyScopeIdType];
311
- export declare const CustomerPolicyStatus: {
312
- readonly ACTIVE: "ACTIVE";
313
- readonly OUT_OF_ADMIN_SCOPE: "OUT_OF_ADMIN_SCOPE";
314
- };
315
- export type CustomerPolicyStatus =
316
- (typeof CustomerPolicyStatus)[keyof typeof CustomerPolicyStatus];
317
- export declare const ResourceTagLogicalOperator: {
318
- readonly AND: "AND";
319
- readonly OR: "OR";
320
- };
321
- export type ResourceTagLogicalOperator =
322
- (typeof ResourceTagLogicalOperator)[keyof typeof ResourceTagLogicalOperator];
323
190
  export interface ResourceTag {
324
191
  Key: string | undefined;
325
192
  Value?: string | undefined;
@@ -332,12 +199,6 @@ export interface NetworkAclPortRange {
332
199
  From?: number | undefined;
333
200
  To?: number | undefined;
334
201
  }
335
- export declare const NetworkAclRuleAction: {
336
- readonly ALLOW: "allow";
337
- readonly DENY: "deny";
338
- };
339
- export type NetworkAclRuleAction =
340
- (typeof NetworkAclRuleAction)[keyof typeof NetworkAclRuleAction];
341
202
  export interface NetworkAclEntry {
342
203
  IcmpTypeCode?: NetworkAclIcmpTypeCode | undefined;
343
204
  Protocol: string | undefined;
@@ -356,12 +217,6 @@ export interface NetworkAclEntrySet {
356
217
  export interface NetworkAclCommonPolicy {
357
218
  NetworkAclEntrySet: NetworkAclEntrySet | undefined;
358
219
  }
359
- export declare const FirewallDeploymentModel: {
360
- readonly CENTRALIZED: "CENTRALIZED";
361
- readonly DISTRIBUTED: "DISTRIBUTED";
362
- };
363
- export type FirewallDeploymentModel =
364
- (typeof FirewallDeploymentModel)[keyof typeof FirewallDeploymentModel];
365
220
  export interface NetworkFirewallPolicy {
366
221
  FirewallDeploymentModel?: FirewallDeploymentModel | undefined;
367
222
  }
@@ -400,14 +255,6 @@ export interface GetPolicyResponse {
400
255
  Policy?: Policy | undefined;
401
256
  PolicyArn?: string | undefined;
402
257
  }
403
- export declare class InvalidTypeException extends __BaseException {
404
- readonly name: "InvalidTypeException";
405
- readonly $fault: "client";
406
- Message?: string | undefined;
407
- constructor(
408
- opts: __ExceptionOptionType<InvalidTypeException, __BaseException>
409
- );
410
- }
411
258
  export interface GetProtectionStatusRequest {
412
259
  PolicyId: string | undefined;
413
260
  MemberAccountId?: string | undefined;
@@ -442,12 +289,6 @@ export interface GetProtocolsListResponse {
442
289
  export interface GetResourceSetRequest {
443
290
  Identifier: string | undefined;
444
291
  }
445
- export declare const ResourceSetStatus: {
446
- readonly ACTIVE: "ACTIVE";
447
- readonly OUT_OF_ADMIN_SCOPE: "OUT_OF_ADMIN_SCOPE";
448
- };
449
- export type ResourceSetStatus =
450
- (typeof ResourceSetStatus)[keyof typeof ResourceSetStatus];
451
292
  export interface ResourceSet {
452
293
  Id?: string | undefined;
453
294
  Name: string | undefined;
@@ -464,13 +305,6 @@ export interface GetResourceSetResponse {
464
305
  export interface GetThirdPartyFirewallAssociationStatusRequest {
465
306
  ThirdPartyFirewall: ThirdPartyFirewall | undefined;
466
307
  }
467
- export declare const MarketplaceSubscriptionOnboardingStatus: {
468
- readonly COMPLETE: "COMPLETE";
469
- readonly NOT_COMPLETE: "NOT_COMPLETE";
470
- readonly NO_SUBSCRIPTION: "NO_SUBSCRIPTION";
471
- };
472
- export type MarketplaceSubscriptionOnboardingStatus =
473
- (typeof MarketplaceSubscriptionOnboardingStatus)[keyof typeof MarketplaceSubscriptionOnboardingStatus];
474
308
  export interface GetThirdPartyFirewallAssociationStatusResponse {
475
309
  ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus | undefined;
476
310
  MarketplaceOnboardingStatus?:
@@ -491,12 +325,6 @@ export interface PartialMatch {
491
325
  Reference?: string | undefined;
492
326
  TargetViolationReasons?: string[] | undefined;
493
327
  }
494
- export declare const RemediationActionType: {
495
- readonly Modify: "MODIFY";
496
- readonly Remove: "REMOVE";
497
- };
498
- export type RemediationActionType =
499
- (typeof RemediationActionType)[keyof typeof RemediationActionType];
500
328
  export interface SecurityGroupRuleDescription {
501
329
  IPV4Range?: string | undefined;
502
330
  IPV6Range?: string | undefined;
@@ -548,24 +376,11 @@ export interface FirewallSubnetMissingVPCEndpointViolation {
548
376
  SubnetAvailabilityZone?: string | undefined;
549
377
  SubnetAvailabilityZoneId?: string | undefined;
550
378
  }
551
- export declare const EntryType: {
552
- readonly CustomEntry: "CUSTOM_ENTRY";
553
- readonly FMSManagedFirstEntry: "FMS_MANAGED_FIRST_ENTRY";
554
- readonly FMSManagedLastEntry: "FMS_MANAGED_LAST_ENTRY";
555
- };
556
- export type EntryType = (typeof EntryType)[keyof typeof EntryType];
557
379
  export interface EntryDescription {
558
380
  EntryDetail?: NetworkAclEntry | undefined;
559
381
  EntryRuleNumber?: number | undefined;
560
382
  EntryType?: EntryType | undefined;
561
383
  }
562
- export declare const EntryViolationReason: {
563
- readonly EntryConflict: "ENTRY_CONFLICT";
564
- readonly IncorrectEntryOrder: "INCORRECT_ENTRY_ORDER";
565
- readonly MissingExpectedEntry: "MISSING_EXPECTED_ENTRY";
566
- };
567
- export type EntryViolationReason =
568
- (typeof EntryViolationReason)[keyof typeof EntryViolationReason];
569
384
  export interface EntryViolation {
570
385
  ExpectedEntry?: EntryDescription | undefined;
571
386
  ExpectedEvaluationOrder?: string | undefined;
@@ -581,26 +396,6 @@ export interface InvalidNetworkAclEntriesViolation {
581
396
  CurrentAssociatedNetworkAcl?: string | undefined;
582
397
  EntryViolations?: EntryViolation[] | undefined;
583
398
  }
584
- export declare const DestinationType: {
585
- readonly IPV4: "IPV4";
586
- readonly IPV6: "IPV6";
587
- readonly PrefixList: "PREFIX_LIST";
588
- };
589
- export type DestinationType =
590
- (typeof DestinationType)[keyof typeof DestinationType];
591
- export declare const TargetType: {
592
- readonly CarrierGateway: "CARRIER_GATEWAY";
593
- readonly EgressOnlyInternetGateway: "EGRESS_ONLY_INTERNET_GATEWAY";
594
- readonly Gateway: "GATEWAY";
595
- readonly Instance: "INSTANCE";
596
- readonly LocalGateway: "LOCAL_GATEWAY";
597
- readonly NatGateway: "NAT_GATEWAY";
598
- readonly NetworkInterface: "NETWORK_INTERFACE";
599
- readonly TransitGateway: "TRANSIT_GATEWAY";
600
- readonly VPCEndpoint: "VPC_ENDPOINT";
601
- readonly VPCPeeringConnection: "VPC_PEERING_CONNECTION";
602
- };
603
- export type TargetType = (typeof TargetType)[keyof typeof TargetType];
604
399
  export interface Route {
605
400
  DestinationType?: DestinationType | undefined;
606
401
  TargetType?: TargetType | undefined;
@@ -680,28 +475,10 @@ export interface NetworkFirewallMissingSubnetViolation {
680
475
  AvailabilityZone?: string | undefined;
681
476
  TargetViolationReason?: string | undefined;
682
477
  }
683
- export declare const RuleOrder: {
684
- readonly DEFAULT_ACTION_ORDER: "DEFAULT_ACTION_ORDER";
685
- readonly STRICT_ORDER: "STRICT_ORDER";
686
- };
687
- export type RuleOrder = (typeof RuleOrder)[keyof typeof RuleOrder];
688
- export declare const StreamExceptionPolicy: {
689
- readonly CONTINUE: "CONTINUE";
690
- readonly DROP: "DROP";
691
- readonly FMS_IGNORE: "FMS_IGNORE";
692
- readonly REJECT: "REJECT";
693
- };
694
- export type StreamExceptionPolicy =
695
- (typeof StreamExceptionPolicy)[keyof typeof StreamExceptionPolicy];
696
478
  export interface StatefulEngineOptions {
697
479
  RuleOrder?: RuleOrder | undefined;
698
480
  StreamExceptionPolicy?: StreamExceptionPolicy | undefined;
699
481
  }
700
- export declare const NetworkFirewallOverrideAction: {
701
- readonly DROP_TO_ALERT: "DROP_TO_ALERT";
702
- };
703
- export type NetworkFirewallOverrideAction =
704
- (typeof NetworkFirewallOverrideAction)[keyof typeof NetworkFirewallOverrideAction];
705
482
  export interface NetworkFirewallStatefulRuleGroupOverride {
706
483
  Action?: NetworkFirewallOverrideAction | undefined;
707
484
  }
@@ -1001,12 +778,6 @@ export interface ListComplianceStatusRequest {
1001
778
  NextToken?: string | undefined;
1002
779
  MaxResults?: number | undefined;
1003
780
  }
1004
- export declare const PolicyComplianceStatusType: {
1005
- readonly Compliant: "COMPLIANT";
1006
- readonly NonCompliant: "NON_COMPLIANT";
1007
- };
1008
- export type PolicyComplianceStatusType =
1009
- (typeof PolicyComplianceStatusType)[keyof typeof PolicyComplianceStatusType];
1010
781
  export interface EvaluationResult {
1011
782
  ComplianceStatus?: PolicyComplianceStatusType | undefined;
1012
783
  ViolatorCount?: number | undefined;