aws-sdk-networkfirewall 1.93.0 → 1.95.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ef2a6aefbcc9b2e553a741c25470ca960192913b427a4d8778e18e8a4a4ea029
4
- data.tar.gz: fa225d509d9d0ef9e81810a56e047da7ce98129723a9ce21d53458e2bafc4e85
3
+ metadata.gz: e49743c64ce3f821f44464693c085ae86d078983edc7a7f6fff41380bca43f8a
4
+ data.tar.gz: 5a74a381f489461473bb6e7e2edb5049592ef9c1d632da1fe15c69ff40c10794
5
5
  SHA512:
6
- metadata.gz: 9197c432406c641188dcbc6dc3fd9d101c6ba57f23b2fe249f455267c1f5c770282f6f4b2a33c45ae40f63b73320a82e5b76bac62ecd6a894d68218e348e630f
7
- data.tar.gz: 00c8ebe6fb7e7e92d92d1ab5a6296e2fb41dfe9197b4a1babe59b321bf1bb14b4d12d3732f33904ac1adf9a4c8d4ba2a230e2088125af4f14baabe45a47e7be0
6
+ metadata.gz: bb18a57f675717b97dffb189a47648616e174416041cf5349ef269972a82dcf57a93eeacf435b8b0a65cd977bc1c3c2d77eb0867e0c76d178e5b5ba86303ad95
7
+ data.tar.gz: df180bc6465716ce039593c897f80e50b2b454ff37c021870475ab0c4942389e14717d589574d60aacd735a92d7786ebd3d8b1a73ed3a185b5668936f9590b4c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.95.0 (2026-07-31)
5
+ ------------------
6
+
7
+ * Feature - Doc Updates for Container Attributes
8
+
9
+ 1.94.0 (2026-07-30)
10
+ ------------------
11
+
12
+ * Feature - Adds UPDATING field to Container Association Status
13
+
4
14
  1.93.0 (2026-07-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.93.0
1
+ 1.95.0
@@ -846,17 +846,10 @@ module Aws::NetworkFirewall
846
846
  req.send_request(options)
847
847
  end
848
848
 
849
- # Creates a container association for Network Firewall. A container
850
- # association links container clusters (ECS or EKS) to Network Firewall,
851
- # enabling dynamic IP resolution for firewall rules based on container
852
- # attributes.
853
- #
854
- # To manage a container association's tags, use the standard Amazon Web
855
- # Services resource tagging operations, ListTagsForResource,
856
- # TagResource, and UntagResource.
857
- #
858
- # To retrieve information about container associations, use
859
- # ListContainerAssociations and DescribeContainerAssociation.
849
+ # Creates a Network Firewall container association. The association
850
+ # monitors container lifecycle events in your Amazon ECS or Amazon EKS
851
+ # clusters and resolves running container addresses for use in firewall
852
+ # rules.
860
853
  #
861
854
  # @option params [required, String] :container_association_name
862
855
  # The descriptive name of the container association. You can't change
@@ -866,13 +859,17 @@ module Aws::NetworkFirewall
866
859
  # A description of the container association.
867
860
  #
868
861
  # @option params [required, String] :type
869
- # The type of container orchestration platform for the clusters in this
870
- # association. Valid values are `ECS` and `EKS`. You can't change the
871
- # type after creation.
862
+ # The type of containers to monitor. You can't change the container
863
+ # type after creation. Valid values:
864
+ #
865
+ # * `ECS` - Amazon Elastic Container Service
866
+ #
867
+ # * `EKS` - Amazon Elastic Kubernetes Service
872
868
  #
873
869
  # @option params [required, Array<Types::ContainerMonitoringConfiguration>] :container_monitoring_configurations
874
- # The list of container monitoring configurations that define which
875
- # clusters and container attributes to monitor.
870
+ # The monitoring configurations for the container association. Each
871
+ # configuration specifies an Amazon ECS or Amazon EKS cluster to monitor
872
+ # and optional attribute filters to narrow which containers are tracked.
876
873
  #
877
874
  # @option params [Array<Types::Tag>] :tags
878
875
  # The key:value pairs to associate with the resource.
@@ -924,7 +921,7 @@ module Aws::NetworkFirewall
924
921
  # resp.container_monitoring_configurations[0].attribute_filters #=> Array
925
922
  # resp.container_monitoring_configurations[0].attribute_filters[0].key #=> String
926
923
  # resp.container_monitoring_configurations[0].attribute_filters[0].value #=> String
927
- # resp.status #=> String, one of "ACTIVE", "CREATING", "DELETING"
924
+ # resp.status #=> String, one of "ACTIVE", "CREATING", "DELETING", "UPDATING"
928
925
  # resp.tags #=> Array
929
926
  # resp.tags[0].key #=> String
930
927
  # resp.tags[0].value #=> String
@@ -2328,18 +2325,20 @@ module Aws::NetworkFirewall
2328
2325
  req.send_request(options)
2329
2326
  end
2330
2327
 
2331
- # Deletes the specified container association. When you delete a
2332
- # container association, Network Firewall stops monitoring the
2333
- # associated container clusters and removes the resolved IP addresses
2334
- # from firewall rules.
2328
+ # Deletes a container association. The resource transitions to a
2329
+ # `DELETING` state. Deletion is asynchronous - Network Firewall returns
2330
+ # immediately while cleanup proceeds in the background. You can't
2331
+ # delete a container association while a rule group references it.
2335
2332
  #
2336
2333
  # @option params [String] :container_association_name
2337
- # The descriptive name of the container association. You must specify
2338
- # the ARN or the name, and you can specify both.
2334
+ # The descriptive name of the container association.
2335
+ #
2336
+ # You must specify the ARN or the name, and you can specify both.
2339
2337
  #
2340
2338
  # @option params [String] :container_association_arn
2341
- # The Amazon Resource Name (ARN) of the container association. You must
2342
- # specify the ARN or the name, and you can specify both.
2339
+ # The Amazon Resource Name (ARN) of the container association.
2340
+ #
2341
+ # You must specify the ARN or the name, and you can specify both.
2343
2342
  #
2344
2343
  # @return [Types::DeleteContainerAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2345
2344
  #
@@ -2358,7 +2357,7 @@ module Aws::NetworkFirewall
2358
2357
  #
2359
2358
  # resp.container_association_name #=> String
2360
2359
  # resp.container_association_arn #=> String
2361
- # resp.status #=> String, one of "ACTIVE", "CREATING", "DELETING"
2360
+ # resp.status #=> String, one of "ACTIVE", "CREATING", "DELETING", "UPDATING"
2362
2361
  #
2363
2362
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DeleteContainerAssociation AWS API Documentation
2364
2363
  #
@@ -2959,15 +2958,17 @@ module Aws::NetworkFirewall
2959
2958
  req.send_request(options)
2960
2959
  end
2961
2960
 
2962
- # Returns the properties of a container association.
2961
+ # Retrieves the configuration and status of a container association.
2963
2962
  #
2964
2963
  # @option params [String] :container_association_name
2965
- # The descriptive name of the container association. You must specify
2966
- # the ARN or the name, and you can specify both.
2964
+ # The descriptive name of the container association.
2965
+ #
2966
+ # You must specify the ARN or the name, and you can specify both.
2967
2967
  #
2968
2968
  # @option params [String] :container_association_arn
2969
- # The Amazon Resource Name (ARN) of the container association. You must
2970
- # specify the ARN or the name, and you can specify both.
2969
+ # The Amazon Resource Name (ARN) of the container association.
2970
+ #
2971
+ # You must specify the ARN or the name, and you can specify both.
2971
2972
  #
2972
2973
  # @return [Types::DescribeContainerAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2973
2974
  #
@@ -3000,7 +3001,7 @@ module Aws::NetworkFirewall
3000
3001
  # resp.container_monitoring_configurations[0].attribute_filters #=> Array
3001
3002
  # resp.container_monitoring_configurations[0].attribute_filters[0].key #=> String
3002
3003
  # resp.container_monitoring_configurations[0].attribute_filters[0].value #=> String
3003
- # resp.status #=> String, one of "ACTIVE", "CREATING", "DELETING"
3004
+ # resp.status #=> String, one of "ACTIVE", "CREATING", "DELETING", "UPDATING"
3004
3005
  # resp.resolved_cidr_count #=> Integer
3005
3006
  # resp.last_updated_time #=> Time
3006
3007
  # resp.tags #=> Array
@@ -4376,8 +4377,9 @@ module Aws::NetworkFirewall
4376
4377
  req.send_request(options)
4377
4378
  end
4378
4379
 
4379
- # Retrieves the metadata for the container associations that you have
4380
- # defined. You can optionally page through results.
4380
+ # Lists the container associations in your account and Region. Use the
4381
+ # `NextToken` parameter in subsequent requests to retrieve additional
4382
+ # results.
4381
4383
  #
4382
4384
  # @option params [Integer] :max_results
4383
4385
  # The maximum number of objects that you want Network Firewall to return
@@ -5594,43 +5596,54 @@ module Aws::NetworkFirewall
5594
5596
  req.send_request(options)
5595
5597
  end
5596
5598
 
5597
- # Updates the properties of an existing container association. Use this
5598
- # to modify the container monitoring configurations or description.
5599
+ # Updates the monitoring configurations and description of a container
5600
+ # association. You can't change the container type after creation.
5601
+ # Provide an update token to enable optimistic concurrency control.
5599
5602
  #
5600
5603
  # @option params [String] :container_association_name
5601
- # The descriptive name of the container association. You must specify
5602
- # the ARN or the name, and you can specify both.
5604
+ # The descriptive name of the container association.
5605
+ #
5606
+ # You must specify the ARN or the name, and you can specify both.
5603
5607
  #
5604
5608
  # @option params [String] :container_association_arn
5605
- # The Amazon Resource Name (ARN) of the container association. You must
5606
- # specify the ARN or the name, and you can specify both.
5609
+ # The Amazon Resource Name (ARN) of the container association.
5610
+ #
5611
+ # You must specify the ARN or the name, and you can specify both.
5607
5612
  #
5608
5613
  # @option params [String] :description
5609
- # A description of the container association.
5614
+ # A description of the container association. When omitted, the existing
5615
+ # description remains unchanged. To clear the description, pass an empty
5616
+ # string.
5610
5617
  #
5611
5618
  # @option params [required, String] :type
5612
- # The type of container orchestration platform. This must match the type
5613
- # specified when the container association was created.
5619
+ # The container type. This value must match the existing type and can't
5620
+ # be changed. Valid values:
5621
+ #
5622
+ # * `ECS` - Amazon Elastic Container Service
5623
+ #
5624
+ # * `EKS` - Amazon Elastic Kubernetes Service
5614
5625
  #
5615
5626
  # @option params [required, Array<Types::ContainerMonitoringConfiguration>] :container_monitoring_configurations
5616
- # The updated list of container monitoring configurations that define
5617
- # which clusters and container attributes to monitor.
5627
+ # The updated monitoring configurations for the container association.
5628
+ # Each configuration specifies an Amazon ECS or Amazon EKS cluster to
5629
+ # monitor and optional attribute filters.
5618
5630
  #
5619
5631
  # @option params [Array<Types::Tag>] :tags
5620
- # The key:value pairs associated with the resource.
5632
+ # The key:value pairs to associate with the resource.
5621
5633
  #
5622
5634
  # @option params [required, String] :update_token
5623
5635
  # A token used for optimistic locking. Network Firewall returns a token
5624
5636
  # to your requests that access the container association. The token
5625
5637
  # marks the state of the container association resource at the time of
5626
- # the request. To make an update to the container association, provide
5627
- # the token in your request. Network Firewall uses the token to ensure
5628
- # that the container association hasn't changed since you last
5629
- # retrieved it. If it has changed, the operation fails with an
5630
- # `InvalidTokenException`. If this happens, retrieve the container
5631
- # association again to get a current copy of it with a new token.
5632
- # Reapply your changes as needed, then try the operation again using the
5633
- # new token.
5638
+ # the request.
5639
+ #
5640
+ # To make changes to the container association, you provide the token in
5641
+ # your request. Network Firewall uses the token to ensure that the
5642
+ # container association hasn't changed since you last retrieved it. If
5643
+ # it has changed, the operation fails with an `InvalidTokenException`.
5644
+ # If this happens, retrieve the container association again to get a
5645
+ # current copy of it with a current token. Reapply your changes as
5646
+ # needed, then try the operation again using the new token.
5634
5647
  #
5635
5648
  # @return [Types::UpdateContainerAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5636
5649
  #
@@ -5681,7 +5694,7 @@ module Aws::NetworkFirewall
5681
5694
  # resp.container_monitoring_configurations[0].attribute_filters #=> Array
5682
5695
  # resp.container_monitoring_configurations[0].attribute_filters[0].key #=> String
5683
5696
  # resp.container_monitoring_configurations[0].attribute_filters[0].value #=> String
5684
- # resp.status #=> String, one of "ACTIVE", "CREATING", "DELETING"
5697
+ # resp.status #=> String, one of "ACTIVE", "CREATING", "DELETING", "UPDATING"
5685
5698
  # resp.tags #=> Array
5686
5699
  # resp.tags[0].key #=> String
5687
5700
  # resp.tags[0].value #=> String
@@ -7262,7 +7275,7 @@ module Aws::NetworkFirewall
7262
7275
  tracer: tracer
7263
7276
  )
7264
7277
  context[:gem_name] = 'aws-sdk-networkfirewall'
7265
- context[:gem_version] = '1.93.0'
7278
+ context[:gem_version] = '1.95.0'
7266
7279
  Seahorse::Client::Request.new(handlers, context)
7267
7280
  end
7268
7281
 
@@ -851,10 +851,9 @@ module Aws::NetworkFirewall
851
851
  include Aws::Structure
852
852
  end
853
853
 
854
- # High-level information about a container association, returned by the
855
- # ListContainerAssociations operation. You can use this information to
856
- # retrieve the full details of a container association using
857
- # DescribeContainerAssociation.
854
+ # The metadata for a container association returned by
855
+ # `ListContainerAssociations`. Contains the ARN and name that you use to
856
+ # identify the container association in other operations.
858
857
  #
859
858
  # @!attribute [rw] arn
860
859
  # The Amazon Resource Name (ARN) of the container association.
@@ -873,15 +872,15 @@ module Aws::NetworkFirewall
873
872
  include Aws::Structure
874
873
  end
875
874
 
876
- # A key-value pair that defines a container attribute filter for a
877
- # container monitoring configuration.
875
+ # A key-value filter pair used in container association monitoring
876
+ # configurations to narrow which containers are tracked.
878
877
  #
879
878
  # @!attribute [rw] key
880
- # The key of the container attribute to filter on.
879
+ # The attribute key to filter on.
881
880
  # @return [String]
882
881
  #
883
882
  # @!attribute [rw] value
884
- # The value of the container attribute to filter on.
883
+ # The attribute value to match.
885
884
  # @return [String]
886
885
  #
887
886
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ContainerAttribute AWS API Documentation
@@ -893,18 +892,21 @@ module Aws::NetworkFirewall
893
892
  include Aws::Structure
894
893
  end
895
894
 
896
- # Defines a container cluster to monitor, along with optional attribute
897
- # filters that narrow the scope of monitored containers within the
898
- # cluster.
895
+ # Contains the monitoring configuration for a single cluster in a
896
+ # container association. Specifies the cluster ARN and optional
897
+ # attribute filters to narrow which containers are tracked.
899
898
  #
900
899
  # @!attribute [rw] cluster_arn
901
- # The Amazon Resource Name (ARN) of the container cluster to monitor.
900
+ # The ARN of the Amazon ECS or Amazon EKS cluster to monitor. The
901
+ # cluster must be in the same Region and account as the container
902
+ # association.
902
903
  # @return [String]
903
904
  #
904
905
  # @!attribute [rw] attribute_filters
905
- # A list of key-value pairs that filter which containers within the
906
- # cluster are monitored. Only containers that match the specified
907
- # attributes are included.
906
+ # Key-value pairs that filter which containers are tracked. For Amazon
907
+ # EKS, you can filter by namespace and Kubernetes labels. For Amazon
908
+ # ECS, you can filter by container instance attributes (EC2 launch
909
+ # type only).
908
910
  # @return [Array<Types::ContainerAttribute>]
909
911
  #
910
912
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ContainerMonitoringConfiguration AWS API Documentation
@@ -926,14 +928,19 @@ module Aws::NetworkFirewall
926
928
  # @return [String]
927
929
  #
928
930
  # @!attribute [rw] type
929
- # The type of container orchestration platform for the clusters in
930
- # this association. Valid values are `ECS` and `EKS`. You can't
931
- # change the type after creation.
931
+ # The type of containers to monitor. You can't change the container
932
+ # type after creation. Valid values:
933
+ #
934
+ # * `ECS` - Amazon Elastic Container Service
935
+ #
936
+ # * `EKS` - Amazon Elastic Kubernetes Service
932
937
  # @return [String]
933
938
  #
934
939
  # @!attribute [rw] container_monitoring_configurations
935
- # The list of container monitoring configurations that define which
936
- # clusters and container attributes to monitor.
940
+ # The monitoring configurations for the container association. Each
941
+ # configuration specifies an Amazon ECS or Amazon EKS cluster to
942
+ # monitor and optional attribute filters to narrow which containers
943
+ # are tracked.
937
944
  # @return [Array<Types::ContainerMonitoringConfiguration>]
938
945
  #
939
946
  # @!attribute [rw] tags
@@ -965,32 +972,38 @@ module Aws::NetworkFirewall
965
972
  # @return [String]
966
973
  #
967
974
  # @!attribute [rw] type
968
- # The type of container orchestration platform. Either `ECS` or `EKS`.
975
+ # The container type. Valid values:
976
+ #
977
+ # * `ECS` - Amazon Elastic Container Service
978
+ #
979
+ # * `EKS` - Amazon Elastic Kubernetes Service
969
980
  # @return [String]
970
981
  #
971
982
  # @!attribute [rw] container_monitoring_configurations
972
- # The container monitoring configurations for this container
973
- # association.
983
+ # The monitoring configurations for the container association.
974
984
  # @return [Array<Types::ContainerMonitoringConfiguration>]
975
985
  #
976
986
  # @!attribute [rw] status
977
- # The current status of the container association.
987
+ # The current status of the container association. For a new container
988
+ # association, the status is `CREATING`.
978
989
  # @return [String]
979
990
  #
980
991
  # @!attribute [rw] tags
981
- # The key:value pairs associated with the resource.
992
+ # The key:value pairs to associate with the resource.
982
993
  # @return [Array<Types::Tag>]
983
994
  #
984
995
  # @!attribute [rw] update_token
985
996
  # A token used for optimistic locking. Network Firewall returns a
986
997
  # token to your requests that access the container association. The
987
998
  # token marks the state of the container association resource at the
988
- # time of the request. To make an update to the container association,
989
- # provide the token in your request. Network Firewall uses the token
990
- # to ensure that the container association hasn't changed since you
991
- # last retrieved it. If it has changed, the operation fails with an
999
+ # time of the request.
1000
+ #
1001
+ # To make changes to the container association, you provide the token
1002
+ # in your request. Network Firewall uses the token to ensure that the
1003
+ # container association hasn't changed since you last retrieved it.
1004
+ # If it has changed, the operation fails with an
992
1005
  # `InvalidTokenException`. If this happens, retrieve the container
993
- # association again to get a current copy of it with a new token.
1006
+ # association again to get a current copy of it with a current token.
994
1007
  # Reapply your changes as needed, then try the operation again using
995
1008
  # the new token.
996
1009
  # @return [String]
@@ -1969,13 +1982,15 @@ module Aws::NetworkFirewall
1969
1982
  end
1970
1983
 
1971
1984
  # @!attribute [rw] container_association_name
1972
- # The descriptive name of the container association. You must specify
1973
- # the ARN or the name, and you can specify both.
1985
+ # The descriptive name of the container association.
1986
+ #
1987
+ # You must specify the ARN or the name, and you can specify both.
1974
1988
  # @return [String]
1975
1989
  #
1976
1990
  # @!attribute [rw] container_association_arn
1977
- # The Amazon Resource Name (ARN) of the container association. You
1978
- # must specify the ARN or the name, and you can specify both.
1991
+ # The Amazon Resource Name (ARN) of the container association.
1992
+ #
1993
+ # You must specify the ARN or the name, and you can specify both.
1979
1994
  # @return [String]
1980
1995
  #
1981
1996
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DeleteContainerAssociationRequest AWS API Documentation
@@ -1996,7 +2011,8 @@ module Aws::NetworkFirewall
1996
2011
  # @return [String]
1997
2012
  #
1998
2013
  # @!attribute [rw] status
1999
- # The current status of the container association.
2014
+ # The current status of the container association. After deletion is
2015
+ # initiated, the status is `DELETING`.
2000
2016
  # @return [String]
2001
2017
  #
2002
2018
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DeleteContainerAssociationResponse AWS API Documentation
@@ -2466,13 +2482,15 @@ module Aws::NetworkFirewall
2466
2482
  end
2467
2483
 
2468
2484
  # @!attribute [rw] container_association_name
2469
- # The descriptive name of the container association. You must specify
2470
- # the ARN or the name, and you can specify both.
2485
+ # The descriptive name of the container association.
2486
+ #
2487
+ # You must specify the ARN or the name, and you can specify both.
2471
2488
  # @return [String]
2472
2489
  #
2473
2490
  # @!attribute [rw] container_association_arn
2474
- # The Amazon Resource Name (ARN) of the container association. You
2475
- # must specify the ARN or the name, and you can specify both.
2491
+ # The Amazon Resource Name (ARN) of the container association.
2492
+ #
2493
+ # You must specify the ARN or the name, and you can specify both.
2476
2494
  # @return [String]
2477
2495
  #
2478
2496
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeContainerAssociationRequest AWS API Documentation
@@ -2497,12 +2515,15 @@ module Aws::NetworkFirewall
2497
2515
  # @return [String]
2498
2516
  #
2499
2517
  # @!attribute [rw] type
2500
- # The type of container orchestration platform. Either `ECS` or `EKS`.
2518
+ # The container type. Valid values:
2519
+ #
2520
+ # * `ECS` - Amazon Elastic Container Service
2521
+ #
2522
+ # * `EKS` - Amazon Elastic Kubernetes Service
2501
2523
  # @return [String]
2502
2524
  #
2503
2525
  # @!attribute [rw] container_monitoring_configurations
2504
- # The container monitoring configurations for this container
2505
- # association.
2526
+ # The monitoring configurations for the container association.
2506
2527
  # @return [Array<Types::ContainerMonitoringConfiguration>]
2507
2528
  #
2508
2529
  # @!attribute [rw] status
@@ -2510,17 +2531,16 @@ module Aws::NetworkFirewall
2510
2531
  # @return [String]
2511
2532
  #
2512
2533
  # @!attribute [rw] resolved_cidr_count
2513
- # The number of CIDR blocks that have been resolved from the monitored
2514
- # containers for this container association.
2534
+ # The number of CIDR blocks resolved from the monitored containers.
2515
2535
  # @return [Integer]
2516
2536
  #
2517
2537
  # @!attribute [rw] last_updated_time
2518
- # The last time that the container association was updated or resolved
2519
- # new container IP addresses.
2538
+ # The most recent time that Network Firewall updated the container
2539
+ # association.
2520
2540
  # @return [Time]
2521
2541
  #
2522
2542
  # @!attribute [rw] tags
2523
- # The key:value pairs associated with the resource.
2543
+ # The key:value pairs to associate with the resource.
2524
2544
  # @return [Array<Types::Tag>]
2525
2545
  #
2526
2546
  # @!attribute [rw] update_token
@@ -2528,6 +2548,15 @@ module Aws::NetworkFirewall
2528
2548
  # token to your requests that access the container association. The
2529
2549
  # token marks the state of the container association resource at the
2530
2550
  # time of the request.
2551
+ #
2552
+ # To make changes to the container association, you provide the token
2553
+ # in your request. Network Firewall uses the token to ensure that the
2554
+ # container association hasn't changed since you last retrieved it.
2555
+ # If it has changed, the operation fails with an
2556
+ # `InvalidTokenException`. If this happens, retrieve the container
2557
+ # association again to get a current copy of it with a current token.
2558
+ # Reapply your changes as needed, then try the operation again using
2559
+ # the new token.
2531
2560
  # @return [String]
2532
2561
  #
2533
2562
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeContainerAssociationResponse AWS API Documentation
@@ -4198,6 +4227,14 @@ module Aws::NetworkFirewall
4198
4227
  #
4199
4228
  # * aws:alert\_established
4200
4229
  #
4230
+ # * aws:drop\_established\_app\_layer
4231
+ #
4232
+ # * aws:alert\_established\_app\_layer
4233
+ #
4234
+ # * aws:drop\_established\_app\_layer\_to\_server
4235
+ #
4236
+ # * aws:alert\_established\_app\_layer\_to\_server
4237
+ #
4201
4238
  # For more information, see [Strict evaluation order][1] in the
4202
4239
  # *Network Firewall Developer Guide*.
4203
4240
  #
@@ -5100,7 +5137,8 @@ module Aws::NetworkFirewall
5100
5137
  end
5101
5138
 
5102
5139
  # @!attribute [rw] container_associations
5103
- # The container association metadata objects.
5140
+ # The container association metadata objects for the account and
5141
+ # Region.
5104
5142
  # @return [Array<Types::ContainerAssociationSummary>]
5105
5143
  #
5106
5144
  # @!attribute [rw] next_token
@@ -7027,7 +7065,7 @@ module Aws::NetworkFirewall
7027
7065
  #
7028
7066
  #
7029
7067
  #
7030
- # [1]: https://suricata.readthedocs.io/en/suricata-7.0.3/rules/intro.html#rule-options
7068
+ # [1]: https://suricata.readthedocs.io/en/suricata-7.0.8/rules/intro.html#rule-options
7031
7069
  # @return [String]
7032
7070
  #
7033
7071
  # @!attribute [rw] settings
@@ -7038,7 +7076,7 @@ module Aws::NetworkFirewall
7038
7076
  #
7039
7077
  #
7040
7078
  #
7041
- # [1]: https://suricata.readthedocs.io/en/suricata-7.0.3/rules/intro.html#rule-options
7079
+ # [1]: https://suricata.readthedocs.io/en/suricata-7.0.8/rules/intro.html#rule-options
7042
7080
  # @return [Array<String>]
7043
7081
  #
7044
7082
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/RuleOption AWS API Documentation
@@ -7136,7 +7174,7 @@ module Aws::NetworkFirewall
7136
7174
  #
7137
7175
  #
7138
7176
  #
7139
- # [1]: https://suricata.readthedocs.io/en/suricata-7.0.3/rules/intro.html
7177
+ # [1]: https://suricata.readthedocs.io/en/suricata-7.0.8/rules/intro.html
7140
7178
  # @return [Array<Types::StatefulRule>]
7141
7179
  #
7142
7180
  # @!attribute [rw] stateless_rules_and_custom_actions
@@ -7599,6 +7637,11 @@ module Aws::NetworkFirewall
7599
7637
  # Configuration settings for the handling of the stateful rule groups in
7600
7638
  # a firewall policy.
7601
7639
  #
7640
+ # Updating any setting in `StatefulEngineOptions` may require a restart
7641
+ # of the stateful engine in order to apply the changes. When this
7642
+ # occurs, existing connections will be treated according to your stream
7643
+ # exception policy configuration.
7644
+ #
7602
7645
  # @!attribute [rw] rule_order
7603
7646
  # Indicates how to manage the order of stateful rule evaluation for
7604
7647
  # the policy. `STRICT_ORDER` is the recommended option, but
@@ -7670,7 +7713,7 @@ module Aws::NetworkFirewall
7670
7713
  #
7671
7714
  #
7672
7715
  #
7673
- # [1]: https://suricata.readthedocs.io/en/suricata-7.0.3/rules/intro.html
7716
+ # [1]: https://suricata.readthedocs.io/en/suricata-7.0.8/rules/intro.html
7674
7717
  #
7675
7718
  # @!attribute [rw] action
7676
7719
  # Defines what Network Firewall should do with the packets in a
@@ -8555,43 +8598,54 @@ module Aws::NetworkFirewall
8555
8598
  end
8556
8599
 
8557
8600
  # @!attribute [rw] container_association_name
8558
- # The descriptive name of the container association. You must specify
8559
- # the ARN or the name, and you can specify both.
8601
+ # The descriptive name of the container association.
8602
+ #
8603
+ # You must specify the ARN or the name, and you can specify both.
8560
8604
  # @return [String]
8561
8605
  #
8562
8606
  # @!attribute [rw] container_association_arn
8563
- # The Amazon Resource Name (ARN) of the container association. You
8564
- # must specify the ARN or the name, and you can specify both.
8607
+ # The Amazon Resource Name (ARN) of the container association.
8608
+ #
8609
+ # You must specify the ARN or the name, and you can specify both.
8565
8610
  # @return [String]
8566
8611
  #
8567
8612
  # @!attribute [rw] description
8568
- # A description of the container association.
8613
+ # A description of the container association. When omitted, the
8614
+ # existing description remains unchanged. To clear the description,
8615
+ # pass an empty string.
8569
8616
  # @return [String]
8570
8617
  #
8571
8618
  # @!attribute [rw] type
8572
- # The type of container orchestration platform. This must match the
8573
- # type specified when the container association was created.
8619
+ # The container type. This value must match the existing type and
8620
+ # can't be changed. Valid values:
8621
+ #
8622
+ # * `ECS` - Amazon Elastic Container Service
8623
+ #
8624
+ # * `EKS` - Amazon Elastic Kubernetes Service
8574
8625
  # @return [String]
8575
8626
  #
8576
8627
  # @!attribute [rw] container_monitoring_configurations
8577
- # The updated list of container monitoring configurations that define
8578
- # which clusters and container attributes to monitor.
8628
+ # The updated monitoring configurations for the container association.
8629
+ # Each configuration specifies an Amazon ECS or Amazon EKS cluster to
8630
+ # monitor and optional attribute filters.
8579
8631
  # @return [Array<Types::ContainerMonitoringConfiguration>]
8580
8632
  #
8581
8633
  # @!attribute [rw] tags
8582
- # The key:value pairs associated with the resource.
8634
+ # The key:value pairs to associate with the resource.
8583
8635
  # @return [Array<Types::Tag>]
8584
8636
  #
8585
8637
  # @!attribute [rw] update_token
8586
8638
  # A token used for optimistic locking. Network Firewall returns a
8587
8639
  # token to your requests that access the container association. The
8588
8640
  # token marks the state of the container association resource at the
8589
- # time of the request. To make an update to the container association,
8590
- # provide the token in your request. Network Firewall uses the token
8591
- # to ensure that the container association hasn't changed since you
8592
- # last retrieved it. If it has changed, the operation fails with an
8641
+ # time of the request.
8642
+ #
8643
+ # To make changes to the container association, you provide the token
8644
+ # in your request. Network Firewall uses the token to ensure that the
8645
+ # container association hasn't changed since you last retrieved it.
8646
+ # If it has changed, the operation fails with an
8593
8647
  # `InvalidTokenException`. If this happens, retrieve the container
8594
- # association again to get a current copy of it with a new token.
8648
+ # association again to get a current copy of it with a current token.
8595
8649
  # Reapply your changes as needed, then try the operation again using
8596
8650
  # the new token.
8597
8651
  # @return [String]
@@ -8623,12 +8677,15 @@ module Aws::NetworkFirewall
8623
8677
  # @return [String]
8624
8678
  #
8625
8679
  # @!attribute [rw] type
8626
- # The type of container orchestration platform. Either `ECS` or `EKS`.
8680
+ # The container type. Valid values:
8681
+ #
8682
+ # * `ECS` - Amazon Elastic Container Service
8683
+ #
8684
+ # * `EKS` - Amazon Elastic Kubernetes Service
8627
8685
  # @return [String]
8628
8686
  #
8629
8687
  # @!attribute [rw] container_monitoring_configurations
8630
- # The container monitoring configurations for this container
8631
- # association.
8688
+ # The monitoring configurations for the container association.
8632
8689
  # @return [Array<Types::ContainerMonitoringConfiguration>]
8633
8690
  #
8634
8691
  # @!attribute [rw] status
@@ -8636,7 +8693,7 @@ module Aws::NetworkFirewall
8636
8693
  # @return [String]
8637
8694
  #
8638
8695
  # @!attribute [rw] tags
8639
- # The key:value pairs associated with the resource.
8696
+ # The key:value pairs to associate with the resource.
8640
8697
  # @return [Array<Types::Tag>]
8641
8698
  #
8642
8699
  # @!attribute [rw] update_token
@@ -8644,6 +8701,15 @@ module Aws::NetworkFirewall
8644
8701
  # token to your requests that access the container association. The
8645
8702
  # token marks the state of the container association resource at the
8646
8703
  # time of the request.
8704
+ #
8705
+ # To make changes to the container association, you provide the token
8706
+ # in your request. Network Firewall uses the token to ensure that the
8707
+ # container association hasn't changed since you last retrieved it.
8708
+ # If it has changed, the operation fails with an
8709
+ # `InvalidTokenException`. If this happens, retrieve the container
8710
+ # association again to get a current copy of it with a current token.
8711
+ # Reapply your changes as needed, then try the operation again using
8712
+ # the new token.
8647
8713
  # @return [String]
8648
8714
  #
8649
8715
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateContainerAssociationResponse AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::NetworkFirewall
54
54
  autoload :EndpointProvider, 'aws-sdk-networkfirewall/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-networkfirewall/endpoints'
56
56
 
57
- GEM_VERSION = '1.93.0'
57
+ GEM_VERSION = '1.95.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -173,7 +173,7 @@ module Aws
173
173
  def description: () -> ::String
174
174
  def type: () -> ("ECS" | "EKS")
175
175
  def container_monitoring_configurations: () -> ::Array[Types::ContainerMonitoringConfiguration]
176
- def status: () -> ("ACTIVE" | "CREATING" | "DELETING")
176
+ def status: () -> ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING")
177
177
  def tags: () -> ::Array[Types::Tag]
178
178
  def update_token: () -> ::String
179
179
  end
@@ -459,7 +459,7 @@ module Aws
459
459
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContainerAssociationResponse]
460
460
  def container_association_name: () -> ::String
461
461
  def container_association_arn: () -> ::String
462
- def status: () -> ("ACTIVE" | "CREATING" | "DELETING")
462
+ def status: () -> ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING")
463
463
  end
464
464
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#delete_container_association-instance_method
465
465
  def delete_container_association: (
@@ -602,7 +602,7 @@ module Aws
602
602
  def description: () -> ::String
603
603
  def type: () -> ("ECS" | "EKS")
604
604
  def container_monitoring_configurations: () -> ::Array[Types::ContainerMonitoringConfiguration]
605
- def status: () -> ("ACTIVE" | "CREATING" | "DELETING")
605
+ def status: () -> ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING")
606
606
  def resolved_cidr_count: () -> ::Integer
607
607
  def last_updated_time: () -> ::Time
608
608
  def tags: () -> ::Array[Types::Tag]
@@ -1198,7 +1198,7 @@ module Aws
1198
1198
  def description: () -> ::String
1199
1199
  def type: () -> ("ECS" | "EKS")
1200
1200
  def container_monitoring_configurations: () -> ::Array[Types::ContainerMonitoringConfiguration]
1201
- def status: () -> ("ACTIVE" | "CREATING" | "DELETING")
1201
+ def status: () -> ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING")
1202
1202
  def tags: () -> ::Array[Types::Tag]
1203
1203
  def update_token: () -> ::String
1204
1204
  end
data/sig/types.rbs CHANGED
@@ -190,7 +190,7 @@ module Aws::NetworkFirewall
190
190
  attr_accessor description: ::String
191
191
  attr_accessor type: ("ECS" | "EKS")
192
192
  attr_accessor container_monitoring_configurations: ::Array[Types::ContainerMonitoringConfiguration]
193
- attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING")
193
+ attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING")
194
194
  attr_accessor tags: ::Array[Types::Tag]
195
195
  attr_accessor update_token: ::String
196
196
  SENSITIVE: []
@@ -379,7 +379,7 @@ module Aws::NetworkFirewall
379
379
  class DeleteContainerAssociationResponse
380
380
  attr_accessor container_association_name: ::String
381
381
  attr_accessor container_association_arn: ::String
382
- attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING")
382
+ attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING")
383
383
  SENSITIVE: []
384
384
  end
385
385
 
@@ -521,7 +521,7 @@ module Aws::NetworkFirewall
521
521
  attr_accessor description: ::String
522
522
  attr_accessor type: ("ECS" | "EKS")
523
523
  attr_accessor container_monitoring_configurations: ::Array[Types::ContainerMonitoringConfiguration]
524
- attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING")
524
+ attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING")
525
525
  attr_accessor resolved_cidr_count: ::Integer
526
526
  attr_accessor last_updated_time: ::Time
527
527
  attr_accessor tags: ::Array[Types::Tag]
@@ -1774,7 +1774,7 @@ module Aws::NetworkFirewall
1774
1774
  attr_accessor description: ::String
1775
1775
  attr_accessor type: ("ECS" | "EKS")
1776
1776
  attr_accessor container_monitoring_configurations: ::Array[Types::ContainerMonitoringConfiguration]
1777
- attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING")
1777
+ attr_accessor status: ("ACTIVE" | "CREATING" | "DELETING" | "UPDATING")
1778
1778
  attr_accessor tags: ::Array[Types::Tag]
1779
1779
  attr_accessor update_token: ::String
1780
1780
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-networkfirewall
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.93.0
4
+ version: 1.95.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services