@aws-sdk/client-network-firewall 3.1100.0 → 3.1101.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/README.md +2 -2
- package/dist-cjs/index.js +1 -1
- package/dist-types/NetworkFirewall.d.ts +2 -2
- package/dist-types/NetworkFirewallClient.d.ts +2 -2
- package/dist-types/commands/CreateContainerAssociationCommand.d.ts +2 -3
- package/dist-types/commands/DeleteContainerAssociationCommand.d.ts +3 -1
- package/dist-types/commands/DescribeContainerAssociationCommand.d.ts +1 -1
- package/dist-types/commands/ListContainerAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateContainerAssociationCommand.d.ts +2 -1
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +149 -44
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,9 +33,9 @@ prevention service for Amazon Virtual Private Cloud (Amazon VPC). With Network F
|
|
|
33
33
|
perimeter of your VPC. This includes filtering traffic going to and coming from an internet
|
|
34
34
|
gateway, NAT gateway, or over VPN or Direct Connect. Network Firewall uses rules that are compatible
|
|
35
35
|
with Suricata, a free, open source network analysis and threat detection engine.
|
|
36
|
-
Network Firewall supports Suricata version 7.0.
|
|
36
|
+
Network Firewall supports Suricata version 7.0.8. For information about Suricata,
|
|
37
37
|
see the <a href="https://suricata.io/">Suricata website</a> and the
|
|
38
|
-
<a href="https://suricata.readthedocs.io/en/suricata-7.0.
|
|
38
|
+
<a href="https://suricata.readthedocs.io/en/suricata-7.0.8/">Suricata User Guide</a>. </p>
|
|
39
39
|
<p>You can use Network Firewall to monitor and protect your VPC traffic in a number of ways.
|
|
40
40
|
The following are just a few examples: </p>
|
|
41
41
|
<ul>
|
package/dist-cjs/index.js
CHANGED
|
@@ -749,9 +749,9 @@ export interface NetworkFirewall {
|
|
|
749
749
|
* perimeter of your VPC. This includes filtering traffic going to and coming from an internet
|
|
750
750
|
* gateway, NAT gateway, or over VPN or Direct Connect. Network Firewall uses rules that are compatible
|
|
751
751
|
* with Suricata, a free, open source network analysis and threat detection engine.
|
|
752
|
-
* Network Firewall supports Suricata version 7.0.
|
|
752
|
+
* Network Firewall supports Suricata version 7.0.8. For information about Suricata,
|
|
753
753
|
* see the <a href="https://suricata.io/">Suricata website</a> and the
|
|
754
|
-
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.
|
|
754
|
+
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.8/">Suricata User Guide</a>. </p>
|
|
755
755
|
* <p>You can use Network Firewall to monitor and protect your VPC traffic in a number of ways.
|
|
756
756
|
* The following are just a few examples: </p>
|
|
757
757
|
* <ul>
|
|
@@ -279,9 +279,9 @@ export interface NetworkFirewallClientResolvedConfig extends NetworkFirewallClie
|
|
|
279
279
|
* perimeter of your VPC. This includes filtering traffic going to and coming from an internet
|
|
280
280
|
* gateway, NAT gateway, or over VPN or Direct Connect. Network Firewall uses rules that are compatible
|
|
281
281
|
* with Suricata, a free, open source network analysis and threat detection engine.
|
|
282
|
-
* Network Firewall supports Suricata version 7.0.
|
|
282
|
+
* Network Firewall supports Suricata version 7.0.8. For information about Suricata,
|
|
283
283
|
* see the <a href="https://suricata.io/">Suricata website</a> and the
|
|
284
|
-
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.
|
|
284
|
+
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.8/">Suricata User Guide</a>. </p>
|
|
285
285
|
* <p>You can use Network Firewall to monitor and protect your VPC traffic in a number of ways.
|
|
286
286
|
* The following are just a few examples: </p>
|
|
287
287
|
* <ul>
|
|
@@ -24,9 +24,8 @@ declare const CreateContainerAssociationCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <p>Creates a
|
|
28
|
-
*
|
|
29
|
-
* <p>To retrieve information about container associations, use <a>ListContainerAssociations</a> and <a>DescribeContainerAssociation</a>.</p>
|
|
27
|
+
* <p>Creates a Network Firewall container association. The association monitors container lifecycle events in your
|
|
28
|
+
* Amazon ECS or Amazon EKS clusters and resolves running container addresses for use in firewall rules.</p>
|
|
30
29
|
* @example
|
|
31
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
31
|
* ```javascript
|
|
@@ -24,7 +24,9 @@ declare const DeleteContainerAssociationCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <p>Deletes
|
|
27
|
+
* <p>Deletes a container association. The resource transitions to a <code>DELETING</code> state. Deletion is
|
|
28
|
+
* asynchronous - Network Firewall returns immediately while cleanup proceeds in the background. You can't delete a
|
|
29
|
+
* container association while a rule group references it.</p>
|
|
28
30
|
* @example
|
|
29
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
32
|
* ```javascript
|
|
@@ -24,7 +24,7 @@ declare const DescribeContainerAssociationCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <p>
|
|
27
|
+
* <p>Retrieves the configuration and status of a container association.</p>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
30
|
* ```javascript
|
|
@@ -24,7 +24,8 @@ declare const ListContainerAssociationsCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <p>
|
|
27
|
+
* <p>Lists the container associations in your account and Region. Use the <code>NextToken</code>
|
|
28
|
+
* parameter in subsequent requests to retrieve additional results.</p>
|
|
28
29
|
* @example
|
|
29
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
31
|
* ```javascript
|
|
@@ -24,7 +24,8 @@ declare const UpdateContainerAssociationCommand_base: {
|
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
|
-
* <p>Updates the
|
|
27
|
+
* <p>Updates the monitoring configurations and description of a container association. You can't change the container
|
|
28
|
+
* type after creation. Provide an update token to enable optimistic concurrency control.</p>
|
|
28
29
|
* @example
|
|
29
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
31
|
* ```javascript
|
package/dist-types/index.d.ts
CHANGED
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
* perimeter of your VPC. This includes filtering traffic going to and coming from an internet
|
|
27
27
|
* gateway, NAT gateway, or over VPN or Direct Connect. Network Firewall uses rules that are compatible
|
|
28
28
|
* with Suricata, a free, open source network analysis and threat detection engine.
|
|
29
|
-
* Network Firewall supports Suricata version 7.0.
|
|
29
|
+
* Network Firewall supports Suricata version 7.0.8. For information about Suricata,
|
|
30
30
|
* see the <a href="https://suricata.io/">Suricata website</a> and the
|
|
31
|
-
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.
|
|
31
|
+
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.8/">Suricata User Guide</a>. </p>
|
|
32
32
|
* <p>You can use Network Firewall to monitor and protect your VPC traffic in a number of ways.
|
|
33
33
|
* The following are just a few examples: </p>
|
|
34
34
|
* <ul>
|
|
@@ -837,7 +837,8 @@ export interface CheckCertificateRevocationStatusActions {
|
|
|
837
837
|
UnknownStatusAction?: RevocationCheckAction | undefined;
|
|
838
838
|
}
|
|
839
839
|
/**
|
|
840
|
-
* <p>
|
|
840
|
+
* <p>The metadata for a container association returned by <code>ListContainerAssociations</code>. Contains the ARN
|
|
841
|
+
* and name that you use to identify the container association in other operations.</p>
|
|
841
842
|
* @public
|
|
842
843
|
*/
|
|
843
844
|
export interface ContainerAssociationSummary {
|
|
@@ -853,33 +854,37 @@ export interface ContainerAssociationSummary {
|
|
|
853
854
|
Name?: string | undefined;
|
|
854
855
|
}
|
|
855
856
|
/**
|
|
856
|
-
* <p>A key-value pair
|
|
857
|
+
* <p>A key-value filter pair used in container association monitoring configurations to narrow which containers
|
|
858
|
+
* are tracked.</p>
|
|
857
859
|
* @public
|
|
858
860
|
*/
|
|
859
861
|
export interface ContainerAttribute {
|
|
860
862
|
/**
|
|
861
|
-
* <p>The key
|
|
863
|
+
* <p>The attribute key to filter on.</p>
|
|
862
864
|
* @public
|
|
863
865
|
*/
|
|
864
866
|
Key: string | undefined;
|
|
865
867
|
/**
|
|
866
|
-
* <p>The value
|
|
868
|
+
* <p>The attribute value to match.</p>
|
|
867
869
|
* @public
|
|
868
870
|
*/
|
|
869
871
|
Value: string | undefined;
|
|
870
872
|
}
|
|
871
873
|
/**
|
|
872
|
-
* <p>
|
|
874
|
+
* <p>Contains the monitoring configuration for a single cluster in a container association. Specifies the cluster
|
|
875
|
+
* ARN and optional attribute filters to narrow which containers are tracked.</p>
|
|
873
876
|
* @public
|
|
874
877
|
*/
|
|
875
878
|
export interface ContainerMonitoringConfiguration {
|
|
876
879
|
/**
|
|
877
|
-
* <p>The
|
|
880
|
+
* <p>The ARN of the Amazon ECS or Amazon EKS cluster to monitor. The cluster must be in the same Region and account as
|
|
881
|
+
* the container association.</p>
|
|
878
882
|
* @public
|
|
879
883
|
*/
|
|
880
884
|
ClusterArn: string | undefined;
|
|
881
885
|
/**
|
|
882
|
-
* <p>
|
|
886
|
+
* <p>Key-value pairs that filter which containers are tracked. For Amazon EKS, you can filter by namespace and
|
|
887
|
+
* Kubernetes labels. For Amazon ECS, you can filter by container instance attributes (EC2 launch type only).</p>
|
|
883
888
|
* @public
|
|
884
889
|
*/
|
|
885
890
|
AttributeFilters?: ContainerAttribute[] | undefined;
|
|
@@ -899,12 +904,23 @@ export interface CreateContainerAssociationRequest {
|
|
|
899
904
|
*/
|
|
900
905
|
Description?: string | undefined;
|
|
901
906
|
/**
|
|
902
|
-
* <p>The type of
|
|
907
|
+
* <p>The type of containers to monitor. You can't change the container type after creation. Valid values:</p>
|
|
908
|
+
* <ul>
|
|
909
|
+
* <li>
|
|
910
|
+
* <p>
|
|
911
|
+
* <code>ECS</code> - Amazon Elastic Container Service</p>
|
|
912
|
+
* </li>
|
|
913
|
+
* <li>
|
|
914
|
+
* <p>
|
|
915
|
+
* <code>EKS</code> - Amazon Elastic Kubernetes Service</p>
|
|
916
|
+
* </li>
|
|
917
|
+
* </ul>
|
|
903
918
|
* @public
|
|
904
919
|
*/
|
|
905
920
|
Type: ContainerMonitoringType | undefined;
|
|
906
921
|
/**
|
|
907
|
-
* <p>The
|
|
922
|
+
* <p>The monitoring configurations for the container association. Each configuration specifies an Amazon ECS or Amazon EKS cluster
|
|
923
|
+
* to monitor and optional attribute filters to narrow which containers are tracked.</p>
|
|
908
924
|
* @public
|
|
909
925
|
*/
|
|
910
926
|
ContainerMonitoringConfigurations: ContainerMonitoringConfiguration[] | undefined;
|
|
@@ -934,27 +950,42 @@ export interface CreateContainerAssociationResponse {
|
|
|
934
950
|
*/
|
|
935
951
|
Description?: string | undefined;
|
|
936
952
|
/**
|
|
937
|
-
* <p>The
|
|
953
|
+
* <p>The container type. Valid values:</p>
|
|
954
|
+
* <ul>
|
|
955
|
+
* <li>
|
|
956
|
+
* <p>
|
|
957
|
+
* <code>ECS</code> - Amazon Elastic Container Service</p>
|
|
958
|
+
* </li>
|
|
959
|
+
* <li>
|
|
960
|
+
* <p>
|
|
961
|
+
* <code>EKS</code> - Amazon Elastic Kubernetes Service</p>
|
|
962
|
+
* </li>
|
|
963
|
+
* </ul>
|
|
938
964
|
* @public
|
|
939
965
|
*/
|
|
940
966
|
Type?: ContainerMonitoringType | undefined;
|
|
941
967
|
/**
|
|
942
|
-
* <p>The
|
|
968
|
+
* <p>The monitoring configurations for the container association.</p>
|
|
943
969
|
* @public
|
|
944
970
|
*/
|
|
945
971
|
ContainerMonitoringConfigurations?: ContainerMonitoringConfiguration[] | undefined;
|
|
946
972
|
/**
|
|
947
|
-
* <p>The current status of the container association
|
|
973
|
+
* <p>The current status of the container association. For a new container association, the status is <code>CREATING</code>.</p>
|
|
948
974
|
* @public
|
|
949
975
|
*/
|
|
950
976
|
Status?: ContainerAssociationStatus | undefined;
|
|
951
977
|
/**
|
|
952
|
-
* <p>The key:value pairs
|
|
978
|
+
* <p>The key:value pairs to associate with the resource.</p>
|
|
953
979
|
* @public
|
|
954
980
|
*/
|
|
955
981
|
Tags?: Tag[] | undefined;
|
|
956
982
|
/**
|
|
957
|
-
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association.
|
|
983
|
+
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association.
|
|
984
|
+
* The token marks the state of the container association resource at the time of the request.</p>
|
|
985
|
+
* <p>To make changes to the container association, you provide the token in your request. Network Firewall uses the token to ensure
|
|
986
|
+
* that the container association hasn't changed since you last retrieved it. If it has changed, the operation fails with an
|
|
987
|
+
* <code>InvalidTokenException</code>. If this happens, retrieve the container association again to get a current copy of it
|
|
988
|
+
* with a current token. Reapply your changes as needed, then try the operation again using the new token.</p>
|
|
958
989
|
* @public
|
|
959
990
|
*/
|
|
960
991
|
UpdateToken?: string | undefined;
|
|
@@ -1441,6 +1472,9 @@ export interface FlowTimeouts {
|
|
|
1441
1472
|
}
|
|
1442
1473
|
/**
|
|
1443
1474
|
* <p>Configuration settings for the handling of the stateful rule groups in a firewall policy. </p>
|
|
1475
|
+
* <important>
|
|
1476
|
+
* <p>Updating any setting in <code>StatefulEngineOptions</code> may require a restart of the stateful engine in order to apply the changes. When this occurs, existing connections will be treated according to your stream exception policy configuration.</p>
|
|
1477
|
+
* </important>
|
|
1444
1478
|
* @public
|
|
1445
1479
|
*/
|
|
1446
1480
|
export interface StatefulEngineOptions {
|
|
@@ -1663,6 +1697,18 @@ export interface FirewallPolicy {
|
|
|
1663
1697
|
* <li>
|
|
1664
1698
|
* <p>aws:alert_established</p>
|
|
1665
1699
|
* </li>
|
|
1700
|
+
* <li>
|
|
1701
|
+
* <p>aws:drop_established_app_layer</p>
|
|
1702
|
+
* </li>
|
|
1703
|
+
* <li>
|
|
1704
|
+
* <p>aws:alert_established_app_layer</p>
|
|
1705
|
+
* </li>
|
|
1706
|
+
* <li>
|
|
1707
|
+
* <p>aws:drop_established_app_layer_to_server</p>
|
|
1708
|
+
* </li>
|
|
1709
|
+
* <li>
|
|
1710
|
+
* <p>aws:alert_established_app_layer_to_server</p>
|
|
1711
|
+
* </li>
|
|
1666
1712
|
* </ul>
|
|
1667
1713
|
* <p>For more information, see
|
|
1668
1714
|
* <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html#suricata-strict-rule-evaluation-order.html">Strict evaluation order</a> in the <i>Network Firewall Developer Guide</i>.
|
|
@@ -2475,12 +2521,12 @@ export interface Header {
|
|
|
2475
2521
|
*/
|
|
2476
2522
|
export interface RuleOption {
|
|
2477
2523
|
/**
|
|
2478
|
-
* <p>The keyword for the Suricata compatible rule option. You must include a <code>sid</code> (signature ID), and can optionally include other keywords. For information about Suricata compatible keywords, see <a href="https://suricata.readthedocs.io/en/suricata-7.0.
|
|
2524
|
+
* <p>The keyword for the Suricata compatible rule option. You must include a <code>sid</code> (signature ID), and can optionally include other keywords. For information about Suricata compatible keywords, see <a href="https://suricata.readthedocs.io/en/suricata-7.0.8/rules/intro.html#rule-options">Rule options</a> in the Suricata documentation.</p>
|
|
2479
2525
|
* @public
|
|
2480
2526
|
*/
|
|
2481
2527
|
Keyword: string | undefined;
|
|
2482
2528
|
/**
|
|
2483
|
-
* <p>The settings of the Suricata compatible rule option. Rule options have zero or more setting values, and the number of possible and required settings depends on the <code>Keyword</code>. For more information about the settings for specific options, see <a href="https://suricata.readthedocs.io/en/suricata-7.0.
|
|
2529
|
+
* <p>The settings of the Suricata compatible rule option. Rule options have zero or more setting values, and the number of possible and required settings depends on the <code>Keyword</code>. For more information about the settings for specific options, see <a href="https://suricata.readthedocs.io/en/suricata-7.0.8/rules/intro.html#rule-options">Rule options</a>.</p>
|
|
2484
2530
|
* @public
|
|
2485
2531
|
*/
|
|
2486
2532
|
Settings?: string[] | undefined;
|
|
@@ -2489,7 +2535,7 @@ export interface RuleOption {
|
|
|
2489
2535
|
* <p>A single Suricata rules specification, for use in a stateful rule group.
|
|
2490
2536
|
* Use this option to specify a simple Suricata rule with protocol, source and destination, ports, direction, and rule options.
|
|
2491
2537
|
* For information about the Suricata <code>Rules</code> format, see
|
|
2492
|
-
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.
|
|
2538
|
+
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.8/rules/intro.html">Rules Format</a>. </p>
|
|
2493
2539
|
* @public
|
|
2494
2540
|
*/
|
|
2495
2541
|
export interface StatefulRule {
|
|
@@ -2761,7 +2807,7 @@ export interface RulesSource {
|
|
|
2761
2807
|
* <p>An array of individual stateful rules inspection criteria to be used together in a stateful rule group.
|
|
2762
2808
|
* Use this option to specify simple Suricata rules with protocol, source and destination, ports, direction, and rule options.
|
|
2763
2809
|
* For information about the Suricata <code>Rules</code> format, see
|
|
2764
|
-
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.
|
|
2810
|
+
* <a href="https://suricata.readthedocs.io/en/suricata-7.0.8/rules/intro.html">Rules Format</a>. </p>
|
|
2765
2811
|
* @public
|
|
2766
2812
|
*/
|
|
2767
2813
|
StatefulRules?: StatefulRule[] | undefined;
|
|
@@ -3497,12 +3543,14 @@ export interface CreateVpcEndpointAssociationResponse {
|
|
|
3497
3543
|
*/
|
|
3498
3544
|
export interface DeleteContainerAssociationRequest {
|
|
3499
3545
|
/**
|
|
3500
|
-
* <p>The descriptive name of the container association
|
|
3546
|
+
* <p>The descriptive name of the container association.</p>
|
|
3547
|
+
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3501
3548
|
* @public
|
|
3502
3549
|
*/
|
|
3503
3550
|
ContainerAssociationName?: string | undefined;
|
|
3504
3551
|
/**
|
|
3505
|
-
* <p>The Amazon Resource Name (ARN) of the container association
|
|
3552
|
+
* <p>The Amazon Resource Name (ARN) of the container association.</p>
|
|
3553
|
+
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3506
3554
|
* @public
|
|
3507
3555
|
*/
|
|
3508
3556
|
ContainerAssociationArn?: string | undefined;
|
|
@@ -3522,7 +3570,7 @@ export interface DeleteContainerAssociationResponse {
|
|
|
3522
3570
|
*/
|
|
3523
3571
|
ContainerAssociationArn?: string | undefined;
|
|
3524
3572
|
/**
|
|
3525
|
-
* <p>The current status of the container association
|
|
3573
|
+
* <p>The current status of the container association. After deletion is initiated, the status is <code>DELETING</code>.</p>
|
|
3526
3574
|
* @public
|
|
3527
3575
|
*/
|
|
3528
3576
|
Status?: ContainerAssociationStatus | undefined;
|
|
@@ -3903,12 +3951,14 @@ export interface DeleteVpcEndpointAssociationResponse {
|
|
|
3903
3951
|
*/
|
|
3904
3952
|
export interface DescribeContainerAssociationRequest {
|
|
3905
3953
|
/**
|
|
3906
|
-
* <p>The descriptive name of the container association
|
|
3954
|
+
* <p>The descriptive name of the container association.</p>
|
|
3955
|
+
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3907
3956
|
* @public
|
|
3908
3957
|
*/
|
|
3909
3958
|
ContainerAssociationName?: string | undefined;
|
|
3910
3959
|
/**
|
|
3911
|
-
* <p>The Amazon Resource Name (ARN) of the container association
|
|
3960
|
+
* <p>The Amazon Resource Name (ARN) of the container association.</p>
|
|
3961
|
+
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
3912
3962
|
* @public
|
|
3913
3963
|
*/
|
|
3914
3964
|
ContainerAssociationArn?: string | undefined;
|
|
@@ -3933,12 +3983,22 @@ export interface DescribeContainerAssociationResponse {
|
|
|
3933
3983
|
*/
|
|
3934
3984
|
Description?: string | undefined;
|
|
3935
3985
|
/**
|
|
3936
|
-
* <p>The
|
|
3986
|
+
* <p>The container type. Valid values:</p>
|
|
3987
|
+
* <ul>
|
|
3988
|
+
* <li>
|
|
3989
|
+
* <p>
|
|
3990
|
+
* <code>ECS</code> - Amazon Elastic Container Service</p>
|
|
3991
|
+
* </li>
|
|
3992
|
+
* <li>
|
|
3993
|
+
* <p>
|
|
3994
|
+
* <code>EKS</code> - Amazon Elastic Kubernetes Service</p>
|
|
3995
|
+
* </li>
|
|
3996
|
+
* </ul>
|
|
3937
3997
|
* @public
|
|
3938
3998
|
*/
|
|
3939
3999
|
Type?: ContainerMonitoringType | undefined;
|
|
3940
4000
|
/**
|
|
3941
|
-
* <p>The
|
|
4001
|
+
* <p>The monitoring configurations for the container association.</p>
|
|
3942
4002
|
* @public
|
|
3943
4003
|
*/
|
|
3944
4004
|
ContainerMonitoringConfigurations?: ContainerMonitoringConfiguration[] | undefined;
|
|
@@ -3948,22 +4008,27 @@ export interface DescribeContainerAssociationResponse {
|
|
|
3948
4008
|
*/
|
|
3949
4009
|
Status?: ContainerAssociationStatus | undefined;
|
|
3950
4010
|
/**
|
|
3951
|
-
* <p>The number of CIDR blocks
|
|
4011
|
+
* <p>The number of CIDR blocks resolved from the monitored containers.</p>
|
|
3952
4012
|
* @public
|
|
3953
4013
|
*/
|
|
3954
4014
|
ResolvedCidrCount?: number | undefined;
|
|
3955
4015
|
/**
|
|
3956
|
-
* <p>The
|
|
4016
|
+
* <p>The most recent time that Network Firewall updated the container association.</p>
|
|
3957
4017
|
* @public
|
|
3958
4018
|
*/
|
|
3959
4019
|
LastUpdatedTime?: Date | undefined;
|
|
3960
4020
|
/**
|
|
3961
|
-
* <p>The key:value pairs
|
|
4021
|
+
* <p>The key:value pairs to associate with the resource.</p>
|
|
3962
4022
|
* @public
|
|
3963
4023
|
*/
|
|
3964
4024
|
Tags?: Tag[] | undefined;
|
|
3965
4025
|
/**
|
|
3966
|
-
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association.
|
|
4026
|
+
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association.
|
|
4027
|
+
* The token marks the state of the container association resource at the time of the request.</p>
|
|
4028
|
+
* <p>To make changes to the container association, you provide the token in your request. Network Firewall uses the token to ensure
|
|
4029
|
+
* that the container association hasn't changed since you last retrieved it. If it has changed, the operation fails with an
|
|
4030
|
+
* <code>InvalidTokenException</code>. If this happens, retrieve the container association again to get a current copy of it
|
|
4031
|
+
* with a current token. Reapply your changes as needed, then try the operation again using the new token.</p>
|
|
3967
4032
|
* @public
|
|
3968
4033
|
*/
|
|
3969
4034
|
UpdateToken?: string | undefined;
|
|
@@ -5352,12 +5417,16 @@ export interface ListAnalysisReportsResponse {
|
|
|
5352
5417
|
*/
|
|
5353
5418
|
export interface ListContainerAssociationsRequest {
|
|
5354
5419
|
/**
|
|
5355
|
-
* <p>The maximum number of objects that you want Network Firewall to return for this request. If more
|
|
5420
|
+
* <p>The maximum number of objects that you want Network Firewall to return for this request. If more
|
|
5421
|
+
* objects are available, in the response, Network Firewall provides a
|
|
5422
|
+
* <code>NextToken</code> value that you can use in a subsequent call to get the next batch of objects.</p>
|
|
5356
5423
|
* @public
|
|
5357
5424
|
*/
|
|
5358
5425
|
MaxResults?: number | undefined;
|
|
5359
5426
|
/**
|
|
5360
|
-
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
5427
|
+
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
5428
|
+
* for retrieval exceeds the maximum you requested, Network Firewall returns a <code>NextToken</code>
|
|
5429
|
+
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
5361
5430
|
* @public
|
|
5362
5431
|
*/
|
|
5363
5432
|
NextToken?: string | undefined;
|
|
@@ -5367,12 +5436,14 @@ export interface ListContainerAssociationsRequest {
|
|
|
5367
5436
|
*/
|
|
5368
5437
|
export interface ListContainerAssociationsResponse {
|
|
5369
5438
|
/**
|
|
5370
|
-
* <p>The container association metadata objects.</p>
|
|
5439
|
+
* <p>The container association metadata objects for the account and Region.</p>
|
|
5371
5440
|
* @public
|
|
5372
5441
|
*/
|
|
5373
5442
|
ContainerAssociations?: ContainerAssociationSummary[] | undefined;
|
|
5374
5443
|
/**
|
|
5375
|
-
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
5444
|
+
* <p>When you request a list of objects with a <code>MaxResults</code> setting, if the number of objects that are still available
|
|
5445
|
+
* for retrieval exceeds the maximum you requested, Network Firewall returns a <code>NextToken</code>
|
|
5446
|
+
* value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.</p>
|
|
5376
5447
|
* @public
|
|
5377
5448
|
*/
|
|
5378
5449
|
NextToken?: string | undefined;
|
|
@@ -6403,37 +6474,56 @@ export interface UpdateAvailabilityZoneChangeProtectionResponse {
|
|
|
6403
6474
|
*/
|
|
6404
6475
|
export interface UpdateContainerAssociationRequest {
|
|
6405
6476
|
/**
|
|
6406
|
-
* <p>The descriptive name of the container association
|
|
6477
|
+
* <p>The descriptive name of the container association.</p>
|
|
6478
|
+
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
6407
6479
|
* @public
|
|
6408
6480
|
*/
|
|
6409
6481
|
ContainerAssociationName?: string | undefined;
|
|
6410
6482
|
/**
|
|
6411
|
-
* <p>The Amazon Resource Name (ARN) of the container association
|
|
6483
|
+
* <p>The Amazon Resource Name (ARN) of the container association.</p>
|
|
6484
|
+
* <p>You must specify the ARN or the name, and you can specify both. </p>
|
|
6412
6485
|
* @public
|
|
6413
6486
|
*/
|
|
6414
6487
|
ContainerAssociationArn?: string | undefined;
|
|
6415
6488
|
/**
|
|
6416
|
-
* <p>A description of the container association
|
|
6489
|
+
* <p>A description of the container association. When omitted, the existing description remains unchanged.
|
|
6490
|
+
* To clear the description, pass an empty string.</p>
|
|
6417
6491
|
* @public
|
|
6418
6492
|
*/
|
|
6419
6493
|
Description?: string | undefined;
|
|
6420
6494
|
/**
|
|
6421
|
-
* <p>The
|
|
6495
|
+
* <p>The container type. This value must match the existing type and can't be changed. Valid values:</p>
|
|
6496
|
+
* <ul>
|
|
6497
|
+
* <li>
|
|
6498
|
+
* <p>
|
|
6499
|
+
* <code>ECS</code> - Amazon Elastic Container Service</p>
|
|
6500
|
+
* </li>
|
|
6501
|
+
* <li>
|
|
6502
|
+
* <p>
|
|
6503
|
+
* <code>EKS</code> - Amazon Elastic Kubernetes Service</p>
|
|
6504
|
+
* </li>
|
|
6505
|
+
* </ul>
|
|
6422
6506
|
* @public
|
|
6423
6507
|
*/
|
|
6424
6508
|
Type: ContainerMonitoringType | undefined;
|
|
6425
6509
|
/**
|
|
6426
|
-
* <p>The updated
|
|
6510
|
+
* <p>The updated monitoring configurations for the container association. Each configuration specifies an Amazon ECS or Amazon EKS cluster
|
|
6511
|
+
* to monitor and optional attribute filters.</p>
|
|
6427
6512
|
* @public
|
|
6428
6513
|
*/
|
|
6429
6514
|
ContainerMonitoringConfigurations: ContainerMonitoringConfiguration[] | undefined;
|
|
6430
6515
|
/**
|
|
6431
|
-
* <p>The key:value pairs
|
|
6516
|
+
* <p>The key:value pairs to associate with the resource.</p>
|
|
6432
6517
|
* @public
|
|
6433
6518
|
*/
|
|
6434
6519
|
Tags?: Tag[] | undefined;
|
|
6435
6520
|
/**
|
|
6436
|
-
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association.
|
|
6521
|
+
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association.
|
|
6522
|
+
* The token marks the state of the container association resource at the time of the request.</p>
|
|
6523
|
+
* <p>To make changes to the container association, you provide the token in your request. Network Firewall uses the token to ensure
|
|
6524
|
+
* that the container association hasn't changed since you last retrieved it. If it has changed, the operation fails with an
|
|
6525
|
+
* <code>InvalidTokenException</code>. If this happens, retrieve the container association again to get a current copy of it
|
|
6526
|
+
* with a current token. Reapply your changes as needed, then try the operation again using the new token.</p>
|
|
6437
6527
|
* @public
|
|
6438
6528
|
*/
|
|
6439
6529
|
UpdateToken: string | undefined;
|
|
@@ -6458,12 +6548,22 @@ export interface UpdateContainerAssociationResponse {
|
|
|
6458
6548
|
*/
|
|
6459
6549
|
Description?: string | undefined;
|
|
6460
6550
|
/**
|
|
6461
|
-
* <p>The
|
|
6551
|
+
* <p>The container type. Valid values:</p>
|
|
6552
|
+
* <ul>
|
|
6553
|
+
* <li>
|
|
6554
|
+
* <p>
|
|
6555
|
+
* <code>ECS</code> - Amazon Elastic Container Service</p>
|
|
6556
|
+
* </li>
|
|
6557
|
+
* <li>
|
|
6558
|
+
* <p>
|
|
6559
|
+
* <code>EKS</code> - Amazon Elastic Kubernetes Service</p>
|
|
6560
|
+
* </li>
|
|
6561
|
+
* </ul>
|
|
6462
6562
|
* @public
|
|
6463
6563
|
*/
|
|
6464
6564
|
Type?: ContainerMonitoringType | undefined;
|
|
6465
6565
|
/**
|
|
6466
|
-
* <p>The
|
|
6566
|
+
* <p>The monitoring configurations for the container association.</p>
|
|
6467
6567
|
* @public
|
|
6468
6568
|
*/
|
|
6469
6569
|
ContainerMonitoringConfigurations?: ContainerMonitoringConfiguration[] | undefined;
|
|
@@ -6473,12 +6573,17 @@ export interface UpdateContainerAssociationResponse {
|
|
|
6473
6573
|
*/
|
|
6474
6574
|
Status?: ContainerAssociationStatus | undefined;
|
|
6475
6575
|
/**
|
|
6476
|
-
* <p>The key:value pairs
|
|
6576
|
+
* <p>The key:value pairs to associate with the resource.</p>
|
|
6477
6577
|
* @public
|
|
6478
6578
|
*/
|
|
6479
6579
|
Tags?: Tag[] | undefined;
|
|
6480
6580
|
/**
|
|
6481
|
-
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association.
|
|
6581
|
+
* <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association.
|
|
6582
|
+
* The token marks the state of the container association resource at the time of the request.</p>
|
|
6583
|
+
* <p>To make changes to the container association, you provide the token in your request. Network Firewall uses the token to ensure
|
|
6584
|
+
* that the container association hasn't changed since you last retrieved it. If it has changed, the operation fails with an
|
|
6585
|
+
* <code>InvalidTokenException</code>. If this happens, retrieve the container association again to get a current copy of it
|
|
6586
|
+
* with a current token. Reapply your changes as needed, then try the operation again using the new token.</p>
|
|
6482
6587
|
* @public
|
|
6483
6588
|
*/
|
|
6484
6589
|
UpdateToken?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-network-firewall",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1101.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Network Firewall Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-network-firewall",
|
|
6
6
|
"license": "Apache-2.0",
|