@aws-sdk/client-fms 3.428.0 → 3.429.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.
|
@@ -103,7 +103,7 @@ export interface AdminAccountSummary {
|
|
|
103
103
|
* </li>
|
|
104
104
|
* </ul>
|
|
105
105
|
*/
|
|
106
|
-
Status?: OrganizationStatus
|
|
106
|
+
Status?: OrganizationStatus;
|
|
107
107
|
}
|
|
108
108
|
/**
|
|
109
109
|
* @public
|
|
@@ -156,7 +156,7 @@ export interface PolicyTypeScope {
|
|
|
156
156
|
* @public
|
|
157
157
|
* <p>The list of policy types that the specified Firewall Manager administrator can manage.</p>
|
|
158
158
|
*/
|
|
159
|
-
PolicyTypes?:
|
|
159
|
+
PolicyTypes?: SecurityServiceType[];
|
|
160
160
|
/**
|
|
161
161
|
* @public
|
|
162
162
|
* <p>Allows the specified Firewall Manager administrator to manage all Firewall Manager policy types, except for third-party policy types. Third-party policy types can only be managed by the Firewall Manager default administrator.</p>
|
|
@@ -403,7 +403,7 @@ export interface AssociateThirdPartyFirewallRequest {
|
|
|
403
403
|
* @public
|
|
404
404
|
* <p>The name of the third-party firewall vendor.</p>
|
|
405
405
|
*/
|
|
406
|
-
ThirdPartyFirewall: ThirdPartyFirewall |
|
|
406
|
+
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
407
407
|
}
|
|
408
408
|
/**
|
|
409
409
|
* @public
|
|
@@ -450,7 +450,7 @@ export interface AssociateThirdPartyFirewallResponse {
|
|
|
450
450
|
* </li>
|
|
451
451
|
* </ul>
|
|
452
452
|
*/
|
|
453
|
-
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus
|
|
453
|
+
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
|
|
454
454
|
}
|
|
455
455
|
/**
|
|
456
456
|
* @public
|
|
@@ -529,7 +529,7 @@ export interface FailedItem {
|
|
|
529
529
|
* @public
|
|
530
530
|
* <p>The reason the resource's association could not be updated.</p>
|
|
531
531
|
*/
|
|
532
|
-
Reason?: FailedItemReason
|
|
532
|
+
Reason?: FailedItemReason;
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
* @public
|
|
@@ -671,7 +671,7 @@ export interface DisassociateThirdPartyFirewallRequest {
|
|
|
671
671
|
* @public
|
|
672
672
|
* <p>The name of the third-party firewall vendor.</p>
|
|
673
673
|
*/
|
|
674
|
-
ThirdPartyFirewall: ThirdPartyFirewall |
|
|
674
|
+
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
675
675
|
}
|
|
676
676
|
/**
|
|
677
677
|
* @public
|
|
@@ -681,7 +681,7 @@ export interface DisassociateThirdPartyFirewallResponse {
|
|
|
681
681
|
* @public
|
|
682
682
|
* <p>The current status for the disassociation of a Firewall Manager administrators account with a third-party firewall.</p>
|
|
683
683
|
*/
|
|
684
|
-
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus
|
|
684
|
+
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
|
|
685
685
|
}
|
|
686
686
|
/**
|
|
687
687
|
* @public
|
|
@@ -702,7 +702,7 @@ export interface GetAdminAccountResponse {
|
|
|
702
702
|
* <p>The status of the account that you set as the Firewall Manager
|
|
703
703
|
* default administrator.</p>
|
|
704
704
|
*/
|
|
705
|
-
RoleStatus?: AccountRoleStatus
|
|
705
|
+
RoleStatus?: AccountRoleStatus;
|
|
706
706
|
}
|
|
707
707
|
/**
|
|
708
708
|
* @public
|
|
@@ -745,7 +745,7 @@ export interface GetAdminScopeResponse {
|
|
|
745
745
|
* </li>
|
|
746
746
|
* </ul>
|
|
747
747
|
*/
|
|
748
|
-
Status?: OrganizationStatus
|
|
748
|
+
Status?: OrganizationStatus;
|
|
749
749
|
}
|
|
750
750
|
/**
|
|
751
751
|
* @public
|
|
@@ -859,7 +859,7 @@ export interface ComplianceViolator {
|
|
|
859
859
|
* @public
|
|
860
860
|
* <p>The reason that the resource is not protected by the policy.</p>
|
|
861
861
|
*/
|
|
862
|
-
ViolationReason?: ViolationReason
|
|
862
|
+
ViolationReason?: ViolationReason;
|
|
863
863
|
/**
|
|
864
864
|
* @public
|
|
865
865
|
* <p>The resource type. This is in the format shown in the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon Web Services Resource Types Reference</a>. For example:
|
|
@@ -919,7 +919,7 @@ export interface PolicyComplianceDetail {
|
|
|
919
919
|
* <p>Details about problems with dependent services, such as WAF or Config,
|
|
920
920
|
* and the error message received that indicates the problem with the service.</p>
|
|
921
921
|
*/
|
|
922
|
-
IssueInfoMap?: Record<
|
|
922
|
+
IssueInfoMap?: Record<DependentServiceName, string>;
|
|
923
923
|
}
|
|
924
924
|
/**
|
|
925
925
|
* @public
|
|
@@ -1033,7 +1033,7 @@ export interface NetworkFirewallPolicy {
|
|
|
1033
1033
|
* <p>Defines the deployment model to use for the firewall policy. To use a distributed model,
|
|
1034
1034
|
* set <a href="https://docs.aws.amazon.com/fms/2018-01-01/APIReference/API_PolicyOption.html">PolicyOption</a> to <code>NULL</code>.</p>
|
|
1035
1035
|
*/
|
|
1036
|
-
FirewallDeploymentModel?: FirewallDeploymentModel
|
|
1036
|
+
FirewallDeploymentModel?: FirewallDeploymentModel;
|
|
1037
1037
|
}
|
|
1038
1038
|
/**
|
|
1039
1039
|
* @public
|
|
@@ -1044,7 +1044,7 @@ export interface ThirdPartyFirewallPolicy {
|
|
|
1044
1044
|
* @public
|
|
1045
1045
|
* <p>Defines the deployment model to use for the third-party firewall policy.</p>
|
|
1046
1046
|
*/
|
|
1047
|
-
FirewallDeploymentModel?: FirewallDeploymentModel
|
|
1047
|
+
FirewallDeploymentModel?: FirewallDeploymentModel;
|
|
1048
1048
|
}
|
|
1049
1049
|
/**
|
|
1050
1050
|
* @public
|
|
@@ -1075,7 +1075,7 @@ export interface SecurityServicePolicyData {
|
|
|
1075
1075
|
* each common policy and for each content audit policy. This is an adjustable limit that you can
|
|
1076
1076
|
* increase by contacting Amazon Web Services Support.</p>
|
|
1077
1077
|
*/
|
|
1078
|
-
Type: SecurityServiceType |
|
|
1078
|
+
Type: SecurityServiceType | undefined;
|
|
1079
1079
|
/**
|
|
1080
1080
|
* @public
|
|
1081
1081
|
* <p>Details about the service that are specific to the service type, in JSON format. </p>
|
|
@@ -1429,7 +1429,7 @@ export interface Policy {
|
|
|
1429
1429
|
* </li>
|
|
1430
1430
|
* </ul>
|
|
1431
1431
|
*/
|
|
1432
|
-
IncludeMap?: Record<
|
|
1432
|
+
IncludeMap?: Record<CustomerPolicyScopeIdType, string[]>;
|
|
1433
1433
|
/**
|
|
1434
1434
|
* @public
|
|
1435
1435
|
* <p>Specifies the Amazon Web Services account IDs and Organizations organizational units (OUs) to exclude from the policy.
|
|
@@ -1454,7 +1454,7 @@ export interface Policy {
|
|
|
1454
1454
|
* </li>
|
|
1455
1455
|
* </ul>
|
|
1456
1456
|
*/
|
|
1457
|
-
ExcludeMap?: Record<
|
|
1457
|
+
ExcludeMap?: Record<CustomerPolicyScopeIdType, string[]>;
|
|
1458
1458
|
/**
|
|
1459
1459
|
* @public
|
|
1460
1460
|
* <p>The unique identifiers of the resource sets used by the policy.</p>
|
|
@@ -1479,7 +1479,7 @@ export interface Policy {
|
|
|
1479
1479
|
* </li>
|
|
1480
1480
|
* </ul>
|
|
1481
1481
|
*/
|
|
1482
|
-
PolicyStatus?: CustomerPolicyStatus
|
|
1482
|
+
PolicyStatus?: CustomerPolicyStatus;
|
|
1483
1483
|
}
|
|
1484
1484
|
/**
|
|
1485
1485
|
* @public
|
|
@@ -1568,7 +1568,7 @@ export interface GetProtectionStatusResponse {
|
|
|
1568
1568
|
* <p>The service type that is protected by the policy. Currently, this is always
|
|
1569
1569
|
* <code>SHIELD_ADVANCED</code>.</p>
|
|
1570
1570
|
*/
|
|
1571
|
-
ServiceType?: SecurityServiceType
|
|
1571
|
+
ServiceType?: SecurityServiceType;
|
|
1572
1572
|
/**
|
|
1573
1573
|
* @public
|
|
1574
1574
|
* <p>Details about the attack, including the following:</p>
|
|
@@ -1754,7 +1754,7 @@ export interface ResourceSet {
|
|
|
1754
1754
|
* </li>
|
|
1755
1755
|
* </ul>
|
|
1756
1756
|
*/
|
|
1757
|
-
ResourceSetStatus?: ResourceSetStatus
|
|
1757
|
+
ResourceSetStatus?: ResourceSetStatus;
|
|
1758
1758
|
}
|
|
1759
1759
|
/**
|
|
1760
1760
|
* @public
|
|
@@ -1779,7 +1779,7 @@ export interface GetThirdPartyFirewallAssociationStatusRequest {
|
|
|
1779
1779
|
* @public
|
|
1780
1780
|
* <p>The name of the third-party firewall vendor.</p>
|
|
1781
1781
|
*/
|
|
1782
|
-
ThirdPartyFirewall: ThirdPartyFirewall |
|
|
1782
|
+
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
1783
1783
|
}
|
|
1784
1784
|
/**
|
|
1785
1785
|
* @public
|
|
@@ -1824,7 +1824,7 @@ export interface GetThirdPartyFirewallAssociationStatusResponse {
|
|
|
1824
1824
|
* </li>
|
|
1825
1825
|
* </ul>
|
|
1826
1826
|
*/
|
|
1827
|
-
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus
|
|
1827
|
+
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
|
|
1828
1828
|
/**
|
|
1829
1829
|
* @public
|
|
1830
1830
|
* <p>The status for subscribing to the third-party firewall vendor in the Amazon Web Services Marketplace.</p>
|
|
@@ -1843,7 +1843,7 @@ export interface GetThirdPartyFirewallAssociationStatusResponse {
|
|
|
1843
1843
|
* </li>
|
|
1844
1844
|
* </ul>
|
|
1845
1845
|
*/
|
|
1846
|
-
MarketplaceOnboardingStatus?: MarketplaceSubscriptionOnboardingStatus
|
|
1846
|
+
MarketplaceOnboardingStatus?: MarketplaceSubscriptionOnboardingStatus;
|
|
1847
1847
|
}
|
|
1848
1848
|
/**
|
|
1849
1849
|
* @public
|
|
@@ -1966,7 +1966,7 @@ export interface SecurityGroupRemediationAction {
|
|
|
1966
1966
|
* @public
|
|
1967
1967
|
* <p>The remediation action that will be performed.</p>
|
|
1968
1968
|
*/
|
|
1969
|
-
RemediationActionType?: RemediationActionType
|
|
1969
|
+
RemediationActionType?: RemediationActionType;
|
|
1970
1970
|
/**
|
|
1971
1971
|
* @public
|
|
1972
1972
|
* <p>Brief description of the action that will be performed.</p>
|
|
@@ -2180,12 +2180,12 @@ export interface Route {
|
|
|
2180
2180
|
* @public
|
|
2181
2181
|
* <p>The type of destination for the route.</p>
|
|
2182
2182
|
*/
|
|
2183
|
-
DestinationType?: DestinationType
|
|
2183
|
+
DestinationType?: DestinationType;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* @public
|
|
2186
2186
|
* <p>The type of target for the route.</p>
|
|
2187
2187
|
*/
|
|
2188
|
-
TargetType?: TargetType
|
|
2188
|
+
TargetType?: TargetType;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* @public
|
|
2191
2191
|
* <p>The destination of the route.</p>
|
|
@@ -2558,7 +2558,7 @@ export interface StatefulEngineOptions {
|
|
|
2558
2558
|
* as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more
|
|
2559
2559
|
* information, see <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html">Evaluation order for stateful rules</a> in the <i>Network Firewall Developer Guide</i>.</p>
|
|
2560
2560
|
*/
|
|
2561
|
-
RuleOrder?: RuleOrder
|
|
2561
|
+
RuleOrder?: RuleOrder;
|
|
2562
2562
|
}
|
|
2563
2563
|
/**
|
|
2564
2564
|
* @public
|
|
@@ -2580,7 +2580,7 @@ export interface NetworkFirewallStatefulRuleGroupOverride {
|
|
|
2580
2580
|
* @public
|
|
2581
2581
|
* <p>The action that changes the rule group from <code>DROP</code> to <code>ALERT</code>. This only applies to managed rule groups.</p>
|
|
2582
2582
|
*/
|
|
2583
|
-
Action?: NetworkFirewallOverrideAction
|
|
2583
|
+
Action?: NetworkFirewallOverrideAction;
|
|
2584
2584
|
}
|
|
2585
2585
|
/**
|
|
2586
2586
|
* @public
|
|
@@ -3590,7 +3590,7 @@ export interface EvaluationResult {
|
|
|
3590
3590
|
* @public
|
|
3591
3591
|
* <p>Describes an Amazon Web Services account's compliance with the Firewall Manager policy.</p>
|
|
3592
3592
|
*/
|
|
3593
|
-
ComplianceStatus?: PolicyComplianceStatusType
|
|
3593
|
+
ComplianceStatus?: PolicyComplianceStatusType;
|
|
3594
3594
|
/**
|
|
3595
3595
|
* @public
|
|
3596
3596
|
* <p>The number of resources that are noncompliant with the specified policy. For WAF and
|
|
@@ -3649,7 +3649,7 @@ export interface PolicyComplianceStatus {
|
|
|
3649
3649
|
* <p>Details about problems with dependent services, such as WAF or Config,
|
|
3650
3650
|
* and the error message received that indicates the problem with the service.</p>
|
|
3651
3651
|
*/
|
|
3652
|
-
IssueInfoMap?: Record<
|
|
3652
|
+
IssueInfoMap?: Record<DependentServiceName, string>;
|
|
3653
3653
|
}
|
|
3654
3654
|
/**
|
|
3655
3655
|
* @public
|
|
@@ -3849,7 +3849,7 @@ export interface PolicySummary {
|
|
|
3849
3849
|
* policy that is created, either an WAF policy, a Shield Advanced policy, or a security
|
|
3850
3850
|
* group policy.</p>
|
|
3851
3851
|
*/
|
|
3852
|
-
SecurityServiceType?: SecurityServiceType
|
|
3852
|
+
SecurityServiceType?: SecurityServiceType;
|
|
3853
3853
|
/**
|
|
3854
3854
|
* @public
|
|
3855
3855
|
* <p>Indicates if the policy should be automatically applied to new resources.</p>
|
|
@@ -3878,7 +3878,7 @@ export interface PolicySummary {
|
|
|
3878
3878
|
* </li>
|
|
3879
3879
|
* </ul>
|
|
3880
3880
|
*/
|
|
3881
|
-
PolicyStatus?: CustomerPolicyStatus
|
|
3881
|
+
PolicyStatus?: CustomerPolicyStatus;
|
|
3882
3882
|
}
|
|
3883
3883
|
/**
|
|
3884
3884
|
* @public
|
|
@@ -4081,7 +4081,7 @@ export interface ResourceSetSummary {
|
|
|
4081
4081
|
* </li>
|
|
4082
4082
|
* </ul>
|
|
4083
4083
|
*/
|
|
4084
|
-
ResourceSetStatus?: ResourceSetStatus
|
|
4084
|
+
ResourceSetStatus?: ResourceSetStatus;
|
|
4085
4085
|
}
|
|
4086
4086
|
/**
|
|
4087
4087
|
* @public
|
|
@@ -4128,7 +4128,7 @@ export interface ListThirdPartyFirewallFirewallPoliciesRequest {
|
|
|
4128
4128
|
* @public
|
|
4129
4129
|
* <p>The name of the third-party firewall vendor.</p>
|
|
4130
4130
|
*/
|
|
4131
|
-
ThirdPartyFirewall: ThirdPartyFirewall |
|
|
4131
|
+
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
4132
4132
|
/**
|
|
4133
4133
|
* @public
|
|
4134
4134
|
* <p>If the previous response included a <code>NextToken</code> element, the specified third-party firewall vendor is associated with more
|
|
@@ -29,7 +29,7 @@ export type OrganizationStatus =
|
|
|
29
29
|
export interface AdminAccountSummary {
|
|
30
30
|
AdminAccount?: string;
|
|
31
31
|
DefaultAdmin?: boolean;
|
|
32
|
-
Status?: OrganizationStatus
|
|
32
|
+
Status?: OrganizationStatus;
|
|
33
33
|
}
|
|
34
34
|
export interface OrganizationalUnitScope {
|
|
35
35
|
OrganizationalUnits?: string[];
|
|
@@ -51,7 +51,7 @@ export declare const SecurityServiceType: {
|
|
|
51
51
|
export type SecurityServiceType =
|
|
52
52
|
(typeof SecurityServiceType)[keyof typeof SecurityServiceType];
|
|
53
53
|
export interface PolicyTypeScope {
|
|
54
|
-
PolicyTypes?:
|
|
54
|
+
PolicyTypes?: SecurityServiceType[];
|
|
55
55
|
AllPolicyTypesEnabled?: boolean;
|
|
56
56
|
}
|
|
57
57
|
export interface RegionScope {
|
|
@@ -134,7 +134,7 @@ export declare const ThirdPartyFirewall: {
|
|
|
134
134
|
export type ThirdPartyFirewall =
|
|
135
135
|
(typeof ThirdPartyFirewall)[keyof typeof ThirdPartyFirewall];
|
|
136
136
|
export interface AssociateThirdPartyFirewallRequest {
|
|
137
|
-
ThirdPartyFirewall: ThirdPartyFirewall |
|
|
137
|
+
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
138
138
|
}
|
|
139
139
|
export declare const ThirdPartyFirewallAssociationStatus: {
|
|
140
140
|
readonly NOT_EXIST: "NOT_EXIST";
|
|
@@ -146,7 +146,7 @@ export declare const ThirdPartyFirewallAssociationStatus: {
|
|
|
146
146
|
export type ThirdPartyFirewallAssociationStatus =
|
|
147
147
|
(typeof ThirdPartyFirewallAssociationStatus)[keyof typeof ThirdPartyFirewallAssociationStatus];
|
|
148
148
|
export interface AssociateThirdPartyFirewallResponse {
|
|
149
|
-
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus
|
|
149
|
+
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
|
|
150
150
|
}
|
|
151
151
|
export interface AwsEc2NetworkInterfaceViolation {
|
|
152
152
|
ViolationTarget?: string;
|
|
@@ -172,7 +172,7 @@ export type FailedItemReason =
|
|
|
172
172
|
(typeof FailedItemReason)[keyof typeof FailedItemReason];
|
|
173
173
|
export interface FailedItem {
|
|
174
174
|
URI?: string;
|
|
175
|
-
Reason?: FailedItemReason
|
|
175
|
+
Reason?: FailedItemReason;
|
|
176
176
|
}
|
|
177
177
|
export interface BatchAssociateResourceResponse {
|
|
178
178
|
ResourceSetIdentifier: string | undefined;
|
|
@@ -202,22 +202,22 @@ export interface DeleteResourceSetRequest {
|
|
|
202
202
|
}
|
|
203
203
|
export interface DisassociateAdminAccountRequest {}
|
|
204
204
|
export interface DisassociateThirdPartyFirewallRequest {
|
|
205
|
-
ThirdPartyFirewall: ThirdPartyFirewall |
|
|
205
|
+
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
206
206
|
}
|
|
207
207
|
export interface DisassociateThirdPartyFirewallResponse {
|
|
208
|
-
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus
|
|
208
|
+
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
|
|
209
209
|
}
|
|
210
210
|
export interface GetAdminAccountRequest {}
|
|
211
211
|
export interface GetAdminAccountResponse {
|
|
212
212
|
AdminAccount?: string;
|
|
213
|
-
RoleStatus?: AccountRoleStatus
|
|
213
|
+
RoleStatus?: AccountRoleStatus;
|
|
214
214
|
}
|
|
215
215
|
export interface GetAdminScopeRequest {
|
|
216
216
|
AdminAccount: string | undefined;
|
|
217
217
|
}
|
|
218
218
|
export interface GetAdminScopeResponse {
|
|
219
219
|
AdminScope?: AdminScope;
|
|
220
|
-
Status?: OrganizationStatus
|
|
220
|
+
Status?: OrganizationStatus;
|
|
221
221
|
}
|
|
222
222
|
export interface GetAppsListRequest {
|
|
223
223
|
ListId: string | undefined;
|
|
@@ -273,7 +273,7 @@ export type ViolationReason =
|
|
|
273
273
|
(typeof ViolationReason)[keyof typeof ViolationReason];
|
|
274
274
|
export interface ComplianceViolator {
|
|
275
275
|
ResourceId?: string;
|
|
276
|
-
ViolationReason?: ViolationReason
|
|
276
|
+
ViolationReason?: ViolationReason;
|
|
277
277
|
ResourceType?: string;
|
|
278
278
|
Metadata?: Record<string, string>;
|
|
279
279
|
}
|
|
@@ -284,7 +284,7 @@ export interface PolicyComplianceDetail {
|
|
|
284
284
|
Violators?: ComplianceViolator[];
|
|
285
285
|
EvaluationLimitExceeded?: boolean;
|
|
286
286
|
ExpiredAt?: Date;
|
|
287
|
-
IssueInfoMap?: Record<
|
|
287
|
+
IssueInfoMap?: Record<DependentServiceName, string>;
|
|
288
288
|
}
|
|
289
289
|
export interface GetComplianceDetailResponse {
|
|
290
290
|
PolicyComplianceDetail?: PolicyComplianceDetail;
|
|
@@ -320,17 +320,17 @@ export declare const FirewallDeploymentModel: {
|
|
|
320
320
|
export type FirewallDeploymentModel =
|
|
321
321
|
(typeof FirewallDeploymentModel)[keyof typeof FirewallDeploymentModel];
|
|
322
322
|
export interface NetworkFirewallPolicy {
|
|
323
|
-
FirewallDeploymentModel?: FirewallDeploymentModel
|
|
323
|
+
FirewallDeploymentModel?: FirewallDeploymentModel;
|
|
324
324
|
}
|
|
325
325
|
export interface ThirdPartyFirewallPolicy {
|
|
326
|
-
FirewallDeploymentModel?: FirewallDeploymentModel
|
|
326
|
+
FirewallDeploymentModel?: FirewallDeploymentModel;
|
|
327
327
|
}
|
|
328
328
|
export interface PolicyOption {
|
|
329
329
|
NetworkFirewallPolicy?: NetworkFirewallPolicy;
|
|
330
330
|
ThirdPartyFirewallPolicy?: ThirdPartyFirewallPolicy;
|
|
331
331
|
}
|
|
332
332
|
export interface SecurityServicePolicyData {
|
|
333
|
-
Type: SecurityServiceType |
|
|
333
|
+
Type: SecurityServiceType | undefined;
|
|
334
334
|
ManagedServiceData?: string;
|
|
335
335
|
PolicyOption?: PolicyOption;
|
|
336
336
|
}
|
|
@@ -345,11 +345,11 @@ export interface Policy {
|
|
|
345
345
|
ExcludeResourceTags: boolean | undefined;
|
|
346
346
|
RemediationEnabled: boolean | undefined;
|
|
347
347
|
DeleteUnusedFMManagedResources?: boolean;
|
|
348
|
-
IncludeMap?: Record<
|
|
349
|
-
ExcludeMap?: Record<
|
|
348
|
+
IncludeMap?: Record<CustomerPolicyScopeIdType, string[]>;
|
|
349
|
+
ExcludeMap?: Record<CustomerPolicyScopeIdType, string[]>;
|
|
350
350
|
ResourceSetIds?: string[];
|
|
351
351
|
PolicyDescription?: string;
|
|
352
|
-
PolicyStatus?: CustomerPolicyStatus
|
|
352
|
+
PolicyStatus?: CustomerPolicyStatus;
|
|
353
353
|
}
|
|
354
354
|
export interface GetPolicyResponse {
|
|
355
355
|
Policy?: Policy;
|
|
@@ -373,7 +373,7 @@ export interface GetProtectionStatusRequest {
|
|
|
373
373
|
}
|
|
374
374
|
export interface GetProtectionStatusResponse {
|
|
375
375
|
AdminAccountId?: string;
|
|
376
|
-
ServiceType?: SecurityServiceType
|
|
376
|
+
ServiceType?: SecurityServiceType;
|
|
377
377
|
Data?: string;
|
|
378
378
|
NextToken?: string;
|
|
379
379
|
}
|
|
@@ -410,14 +410,14 @@ export interface ResourceSet {
|
|
|
410
410
|
UpdateToken?: string;
|
|
411
411
|
ResourceTypeList: string[] | undefined;
|
|
412
412
|
LastUpdateTime?: Date;
|
|
413
|
-
ResourceSetStatus?: ResourceSetStatus
|
|
413
|
+
ResourceSetStatus?: ResourceSetStatus;
|
|
414
414
|
}
|
|
415
415
|
export interface GetResourceSetResponse {
|
|
416
416
|
ResourceSet: ResourceSet | undefined;
|
|
417
417
|
ResourceSetArn: string | undefined;
|
|
418
418
|
}
|
|
419
419
|
export interface GetThirdPartyFirewallAssociationStatusRequest {
|
|
420
|
-
ThirdPartyFirewall: ThirdPartyFirewall |
|
|
420
|
+
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
421
421
|
}
|
|
422
422
|
export declare const MarketplaceSubscriptionOnboardingStatus: {
|
|
423
423
|
readonly COMPLETE: "COMPLETE";
|
|
@@ -427,10 +427,8 @@ export declare const MarketplaceSubscriptionOnboardingStatus: {
|
|
|
427
427
|
export type MarketplaceSubscriptionOnboardingStatus =
|
|
428
428
|
(typeof MarketplaceSubscriptionOnboardingStatus)[keyof typeof MarketplaceSubscriptionOnboardingStatus];
|
|
429
429
|
export interface GetThirdPartyFirewallAssociationStatusResponse {
|
|
430
|
-
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus
|
|
431
|
-
MarketplaceOnboardingStatus?:
|
|
432
|
-
| MarketplaceSubscriptionOnboardingStatus
|
|
433
|
-
| string;
|
|
430
|
+
ThirdPartyFirewallStatus?: ThirdPartyFirewallAssociationStatus;
|
|
431
|
+
MarketplaceOnboardingStatus?: MarketplaceSubscriptionOnboardingStatus;
|
|
434
432
|
}
|
|
435
433
|
export interface GetViolationDetailsRequest {
|
|
436
434
|
PolicyId: string | undefined;
|
|
@@ -461,7 +459,7 @@ export interface SecurityGroupRuleDescription {
|
|
|
461
459
|
ToPort?: number;
|
|
462
460
|
}
|
|
463
461
|
export interface SecurityGroupRemediationAction {
|
|
464
|
-
RemediationActionType?: RemediationActionType
|
|
462
|
+
RemediationActionType?: RemediationActionType;
|
|
465
463
|
Description?: string;
|
|
466
464
|
RemediationResult?: SecurityGroupRuleDescription;
|
|
467
465
|
IsDefaultAction?: boolean;
|
|
@@ -522,8 +520,8 @@ export declare const TargetType: {
|
|
|
522
520
|
};
|
|
523
521
|
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
524
522
|
export interface Route {
|
|
525
|
-
DestinationType?: DestinationType
|
|
526
|
-
TargetType?: TargetType
|
|
523
|
+
DestinationType?: DestinationType;
|
|
524
|
+
TargetType?: TargetType;
|
|
527
525
|
Destination?: string;
|
|
528
526
|
Target?: string;
|
|
529
527
|
}
|
|
@@ -606,7 +604,7 @@ export declare const RuleOrder: {
|
|
|
606
604
|
};
|
|
607
605
|
export type RuleOrder = (typeof RuleOrder)[keyof typeof RuleOrder];
|
|
608
606
|
export interface StatefulEngineOptions {
|
|
609
|
-
RuleOrder?: RuleOrder
|
|
607
|
+
RuleOrder?: RuleOrder;
|
|
610
608
|
}
|
|
611
609
|
export declare const NetworkFirewallOverrideAction: {
|
|
612
610
|
readonly DROP_TO_ALERT: "DROP_TO_ALERT";
|
|
@@ -614,7 +612,7 @@ export declare const NetworkFirewallOverrideAction: {
|
|
|
614
612
|
export type NetworkFirewallOverrideAction =
|
|
615
613
|
(typeof NetworkFirewallOverrideAction)[keyof typeof NetworkFirewallOverrideAction];
|
|
616
614
|
export interface NetworkFirewallStatefulRuleGroupOverride {
|
|
617
|
-
Action?: NetworkFirewallOverrideAction
|
|
615
|
+
Action?: NetworkFirewallOverrideAction;
|
|
618
616
|
}
|
|
619
617
|
export interface StatefulRuleGroup {
|
|
620
618
|
RuleGroupName?: string;
|
|
@@ -833,7 +831,7 @@ export declare const PolicyComplianceStatusType: {
|
|
|
833
831
|
export type PolicyComplianceStatusType =
|
|
834
832
|
(typeof PolicyComplianceStatusType)[keyof typeof PolicyComplianceStatusType];
|
|
835
833
|
export interface EvaluationResult {
|
|
836
|
-
ComplianceStatus?: PolicyComplianceStatusType
|
|
834
|
+
ComplianceStatus?: PolicyComplianceStatusType;
|
|
837
835
|
ViolatorCount?: number;
|
|
838
836
|
EvaluationLimitExceeded?: boolean;
|
|
839
837
|
}
|
|
@@ -844,7 +842,7 @@ export interface PolicyComplianceStatus {
|
|
|
844
842
|
MemberAccount?: string;
|
|
845
843
|
EvaluationResults?: EvaluationResult[];
|
|
846
844
|
LastUpdated?: Date;
|
|
847
|
-
IssueInfoMap?: Record<
|
|
845
|
+
IssueInfoMap?: Record<DependentServiceName, string>;
|
|
848
846
|
}
|
|
849
847
|
export interface ListComplianceStatusResponse {
|
|
850
848
|
PolicyComplianceStatusList?: PolicyComplianceStatus[];
|
|
@@ -883,10 +881,10 @@ export interface PolicySummary {
|
|
|
883
881
|
PolicyId?: string;
|
|
884
882
|
PolicyName?: string;
|
|
885
883
|
ResourceType?: string;
|
|
886
|
-
SecurityServiceType?: SecurityServiceType
|
|
884
|
+
SecurityServiceType?: SecurityServiceType;
|
|
887
885
|
RemediationEnabled?: boolean;
|
|
888
886
|
DeleteUnusedFMManagedResources?: boolean;
|
|
889
|
-
PolicyStatus?: CustomerPolicyStatus
|
|
887
|
+
PolicyStatus?: CustomerPolicyStatus;
|
|
890
888
|
}
|
|
891
889
|
export interface ListPoliciesResponse {
|
|
892
890
|
PolicyList?: PolicySummary[];
|
|
@@ -929,7 +927,7 @@ export interface ResourceSetSummary {
|
|
|
929
927
|
Name?: string;
|
|
930
928
|
Description?: string;
|
|
931
929
|
LastUpdateTime?: Date;
|
|
932
|
-
ResourceSetStatus?: ResourceSetStatus
|
|
930
|
+
ResourceSetStatus?: ResourceSetStatus;
|
|
933
931
|
}
|
|
934
932
|
export interface ListResourceSetsResponse {
|
|
935
933
|
ResourceSets?: ResourceSetSummary[];
|
|
@@ -942,7 +940,7 @@ export interface ListTagsForResourceResponse {
|
|
|
942
940
|
TagList?: Tag[];
|
|
943
941
|
}
|
|
944
942
|
export interface ListThirdPartyFirewallFirewallPoliciesRequest {
|
|
945
|
-
ThirdPartyFirewall: ThirdPartyFirewall |
|
|
943
|
+
ThirdPartyFirewall: ThirdPartyFirewall | undefined;
|
|
946
944
|
NextToken?: string;
|
|
947
945
|
MaxResults: number | undefined;
|
|
948
946
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|