aws-sdk-networkfirewall 1.94.0 → 1.96.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: deb22dd8e965df00b10eba37c3213ce3c92784ae7522d4f6215203e20f8ff171
4
- data.tar.gz: 1356cdf3c44e34da790e38d583a3faeb4927edb8d91d0b594be9e97ac22eb5ef
3
+ metadata.gz: 4a3e3dc1475e3dd6dc7504f48c2e7f4cb4d2e899a319c7b556e907c7243e7eb3
4
+ data.tar.gz: 3747273908aebabe39680fa07904a7cf275701bfb7adf1eec77113c8f5d0165b
5
5
  SHA512:
6
- metadata.gz: 975902fb2b54eac222e0a70e10b4a4ca7f61dd340647017053afc86decf4b2fe0d56c41fdb9e4c9f25d90d803364ed6f20fe1cea4f9bd3032c585d0a25a7d490
7
- data.tar.gz: 2b2dd77d37d1b60aea8ec5643e0844a46915827ed5db109a7ec1e7faf240e3937c671bad25c7e42b12d712926173576a5c7e56dc14ecb871e944cac9f7582424
6
+ metadata.gz: 5f4a2fc8291f604f4815a5769d2410529d822b6613aa44c3f2a14ea882c9bb7fe1c8533c9c471980a41108e691b85ef14f31906a1f1cfef41b7db207a49b1012
7
+ data.tar.gz: 4014485ba584d5d0daa9b0aac624baec46c535ea8006160ceae357ffd1f121cfd1c9cbda51cb2e47a99af3ec91315d82ff19994c48d3c26f85dc14dc034b12ac
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.0 (2026-08-03)
5
+ ------------------
6
+
7
+ * Feature - This launch allows customers to use Network Firewall as an explicit Proxy and protect their workloads against threat of data exfiltration.
8
+
9
+ 1.95.0 (2026-07-31)
10
+ ------------------
11
+
12
+ * Feature - Doc Updates for Container Attributes
13
+
4
14
  1.94.0 (2026-07-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.94.0
1
+ 1.96.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.
@@ -1060,6 +1057,40 @@ module Aws::NetworkFirewall
1060
1057
  #
1061
1058
  # Default value: `FALSE`
1062
1059
  #
1060
+ # @option params [Array<Types::NatGatewayMapping>] :nat_gateway_mappings
1061
+ # The NAT gateways that the firewall uses to proxy traffic when
1062
+ # `NoSourcePreservation` is `TRUE`. Network Firewall attaches the
1063
+ # firewall to each NAT gateway that you specify, so that egress traffic
1064
+ # is proxied through the NAT gateway.
1065
+ #
1066
+ # @option params [Types::ProxySettings] :proxy_settings
1067
+ # The listener configuration for a proxy mode firewall, used when
1068
+ # `NoSourcePreservation` is `TRUE`. This specifies the ports and
1069
+ # protocols on which the firewall's proxy listens for traffic.
1070
+ #
1071
+ # @option params [Boolean] :no_source_preservation
1072
+ # Optional. Indicates whether the firewall operates in proxy mode, in
1073
+ # which the source IP address of the traffic is not preserved. When set
1074
+ # to `TRUE`, the firewall proxies traffic through a NAT gateway and the
1075
+ # traffic reaching the destination uses the NAT gateway's IP address as
1076
+ # the source.
1077
+ #
1078
+ # When you set this to `TRUE`, you must specify `NatGatewayMappings` and
1079
+ # `VpcEndpoint` instead of a top-level `VpcId` and `SubnetMappings`.
1080
+ #
1081
+ # You can't change this setting after you create the firewall.
1082
+ #
1083
+ # Default value: `FALSE`
1084
+ #
1085
+ # @option params [Types::VpcEndpoint] :vpc_endpoint
1086
+ # The VPC and subnets for the firewall endpoint, used when
1087
+ # `NoSourcePreservation` is `TRUE`. Network Firewall creates the
1088
+ # firewall endpoint in the subnets that you specify here.
1089
+ #
1090
+ # For proxy mode firewalls, provide the firewall's VPC and endpoint
1091
+ # subnets through this parameter instead of the top-level `VpcId` and
1092
+ # `SubnetMappings`.
1093
+ #
1063
1094
  # @return [Types::CreateFirewallResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1064
1095
  #
1065
1096
  # * {Types::CreateFirewallResponse#firewall #firewall} => Types::Firewall
@@ -1099,6 +1130,29 @@ module Aws::NetworkFirewall
1099
1130
  # },
1100
1131
  # ],
1101
1132
  # availability_zone_change_protection: false,
1133
+ # nat_gateway_mappings: [
1134
+ # {
1135
+ # nat_gateway_id: "NatGatewayId", # required
1136
+ # },
1137
+ # ],
1138
+ # proxy_settings: {
1139
+ # listener_properties: [ # required
1140
+ # {
1141
+ # port: 1,
1142
+ # type: "HTTP", # accepts HTTP, HTTPS
1143
+ # },
1144
+ # ],
1145
+ # },
1146
+ # no_source_preservation: false,
1147
+ # vpc_endpoint: {
1148
+ # vpc_id: "VpcId", # required
1149
+ # subnet_mappings: [ # required
1150
+ # {
1151
+ # subnet_id: "CollectionMember_String", # required
1152
+ # ip_address_type: "DUALSTACK", # accepts DUALSTACK, IPV4, IPV6
1153
+ # },
1154
+ # ],
1155
+ # },
1102
1156
  # })
1103
1157
  #
1104
1158
  # @example Response structure
@@ -1128,6 +1182,16 @@ module Aws::NetworkFirewall
1128
1182
  # resp.firewall.availability_zone_mappings #=> Array
1129
1183
  # resp.firewall.availability_zone_mappings[0].availability_zone #=> String
1130
1184
  # resp.firewall.availability_zone_change_protection #=> Boolean
1185
+ # resp.firewall.nat_gateway_mappings #=> Array
1186
+ # resp.firewall.nat_gateway_mappings[0].nat_gateway_id #=> String
1187
+ # resp.firewall.proxy_settings.listener_properties #=> Array
1188
+ # resp.firewall.proxy_settings.listener_properties[0].port #=> Integer
1189
+ # resp.firewall.proxy_settings.listener_properties[0].type #=> String, one of "HTTP", "HTTPS"
1190
+ # resp.firewall.no_source_preservation #=> Boolean
1191
+ # resp.firewall.vpc_endpoint.vpc_id #=> String
1192
+ # resp.firewall.vpc_endpoint.subnet_mappings #=> Array
1193
+ # resp.firewall.vpc_endpoint.subnet_mappings[0].subnet_id #=> String
1194
+ # resp.firewall.vpc_endpoint.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4", "IPV6"
1131
1195
  # resp.firewall_status.status #=> String, one of "PROVISIONING", "DELETING", "READY"
1132
1196
  # resp.firewall_status.configuration_sync_state_summary #=> String, one of "PENDING", "IN_SYNC", "CAPACITY_CONSTRAINED"
1133
1197
  # resp.firewall_status.sync_states #=> Hash
@@ -1135,9 +1199,15 @@ module Aws::NetworkFirewall
1135
1199
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.endpoint_id #=> String
1136
1200
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.status #=> String, one of "CREATING", "DELETING", "FAILED", "ERROR", "SCALING", "READY"
1137
1201
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.status_message #=> String
1202
+ # resp.firewall_status.sync_states["AvailabilityZone"].attachment.dns_name #=> String
1138
1203
  # resp.firewall_status.sync_states["AvailabilityZone"].config #=> Hash
1139
1204
  # resp.firewall_status.sync_states["AvailabilityZone"].config["ResourceName"].sync_status #=> String, one of "PENDING", "IN_SYNC", "CAPACITY_CONSTRAINED", "NOT_SUBSCRIBED", "DEPRECATED"
1140
1205
  # resp.firewall_status.sync_states["AvailabilityZone"].config["ResourceName"].update_token #=> String
1206
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments #=> Array
1207
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].nat_gateway_id #=> String
1208
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].status #=> String, one of "CREATING", "READY", "UPDATING", "FAILED", "DELETING"
1209
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].status_message #=> String
1210
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].dns_name #=> String
1141
1211
  # resp.firewall_status.capacity_usage_summary.cid_rs.available_cidr_count #=> Integer
1142
1212
  # resp.firewall_status.capacity_usage_summary.cid_rs.utilized_cidr_count #=> Integer
1143
1213
  # resp.firewall_status.capacity_usage_summary.cid_rs.ip_set_references #=> Hash
@@ -2318,6 +2388,7 @@ module Aws::NetworkFirewall
2318
2388
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.endpoint_id #=> String
2319
2389
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.status #=> String, one of "CREATING", "DELETING", "FAILED", "ERROR", "SCALING", "READY"
2320
2390
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.status_message #=> String
2391
+ # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.dns_name #=> String
2321
2392
  #
2322
2393
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/CreateVpcEndpointAssociation AWS API Documentation
2323
2394
  #
@@ -2328,18 +2399,20 @@ module Aws::NetworkFirewall
2328
2399
  req.send_request(options)
2329
2400
  end
2330
2401
 
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.
2402
+ # Deletes a container association. The resource transitions to a
2403
+ # `DELETING` state. Deletion is asynchronous - Network Firewall returns
2404
+ # immediately while cleanup proceeds in the background. You can't
2405
+ # delete a container association while a rule group references it.
2335
2406
  #
2336
2407
  # @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.
2408
+ # The descriptive name of the container association.
2409
+ #
2410
+ # You must specify the ARN or the name, and you can specify both.
2339
2411
  #
2340
2412
  # @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.
2413
+ # The Amazon Resource Name (ARN) of the container association.
2414
+ #
2415
+ # You must specify the ARN or the name, and you can specify both.
2343
2416
  #
2344
2417
  # @return [Types::DeleteContainerAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2345
2418
  #
@@ -2435,6 +2508,16 @@ module Aws::NetworkFirewall
2435
2508
  # resp.firewall.availability_zone_mappings #=> Array
2436
2509
  # resp.firewall.availability_zone_mappings[0].availability_zone #=> String
2437
2510
  # resp.firewall.availability_zone_change_protection #=> Boolean
2511
+ # resp.firewall.nat_gateway_mappings #=> Array
2512
+ # resp.firewall.nat_gateway_mappings[0].nat_gateway_id #=> String
2513
+ # resp.firewall.proxy_settings.listener_properties #=> Array
2514
+ # resp.firewall.proxy_settings.listener_properties[0].port #=> Integer
2515
+ # resp.firewall.proxy_settings.listener_properties[0].type #=> String, one of "HTTP", "HTTPS"
2516
+ # resp.firewall.no_source_preservation #=> Boolean
2517
+ # resp.firewall.vpc_endpoint.vpc_id #=> String
2518
+ # resp.firewall.vpc_endpoint.subnet_mappings #=> Array
2519
+ # resp.firewall.vpc_endpoint.subnet_mappings[0].subnet_id #=> String
2520
+ # resp.firewall.vpc_endpoint.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4", "IPV6"
2438
2521
  # resp.firewall_status.status #=> String, one of "PROVISIONING", "DELETING", "READY"
2439
2522
  # resp.firewall_status.configuration_sync_state_summary #=> String, one of "PENDING", "IN_SYNC", "CAPACITY_CONSTRAINED"
2440
2523
  # resp.firewall_status.sync_states #=> Hash
@@ -2442,9 +2525,15 @@ module Aws::NetworkFirewall
2442
2525
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.endpoint_id #=> String
2443
2526
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.status #=> String, one of "CREATING", "DELETING", "FAILED", "ERROR", "SCALING", "READY"
2444
2527
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.status_message #=> String
2528
+ # resp.firewall_status.sync_states["AvailabilityZone"].attachment.dns_name #=> String
2445
2529
  # resp.firewall_status.sync_states["AvailabilityZone"].config #=> Hash
2446
2530
  # resp.firewall_status.sync_states["AvailabilityZone"].config["ResourceName"].sync_status #=> String, one of "PENDING", "IN_SYNC", "CAPACITY_CONSTRAINED", "NOT_SUBSCRIBED", "DEPRECATED"
2447
2531
  # resp.firewall_status.sync_states["AvailabilityZone"].config["ResourceName"].update_token #=> String
2532
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments #=> Array
2533
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].nat_gateway_id #=> String
2534
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].status #=> String, one of "CREATING", "READY", "UPDATING", "FAILED", "DELETING"
2535
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].status_message #=> String
2536
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].dns_name #=> String
2448
2537
  # resp.firewall_status.capacity_usage_summary.cid_rs.available_cidr_count #=> Integer
2449
2538
  # resp.firewall_status.capacity_usage_summary.cid_rs.utilized_cidr_count #=> Integer
2450
2539
  # resp.firewall_status.capacity_usage_summary.cid_rs.ip_set_references #=> Hash
@@ -2949,6 +3038,7 @@ module Aws::NetworkFirewall
2949
3038
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.endpoint_id #=> String
2950
3039
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.status #=> String, one of "CREATING", "DELETING", "FAILED", "ERROR", "SCALING", "READY"
2951
3040
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.status_message #=> String
3041
+ # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.dns_name #=> String
2952
3042
  #
2953
3043
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DeleteVpcEndpointAssociation AWS API Documentation
2954
3044
  #
@@ -2959,15 +3049,17 @@ module Aws::NetworkFirewall
2959
3049
  req.send_request(options)
2960
3050
  end
2961
3051
 
2962
- # Returns the properties of a container association.
3052
+ # Retrieves the configuration and status of a container association.
2963
3053
  #
2964
3054
  # @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.
3055
+ # The descriptive name of the container association.
3056
+ #
3057
+ # You must specify the ARN or the name, and you can specify both.
2967
3058
  #
2968
3059
  # @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.
3060
+ # The Amazon Resource Name (ARN) of the container association.
3061
+ #
3062
+ # You must specify the ARN or the name, and you can specify both.
2971
3063
  #
2972
3064
  # @return [Types::DescribeContainerAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2973
3065
  #
@@ -3071,6 +3163,16 @@ module Aws::NetworkFirewall
3071
3163
  # resp.firewall.availability_zone_mappings #=> Array
3072
3164
  # resp.firewall.availability_zone_mappings[0].availability_zone #=> String
3073
3165
  # resp.firewall.availability_zone_change_protection #=> Boolean
3166
+ # resp.firewall.nat_gateway_mappings #=> Array
3167
+ # resp.firewall.nat_gateway_mappings[0].nat_gateway_id #=> String
3168
+ # resp.firewall.proxy_settings.listener_properties #=> Array
3169
+ # resp.firewall.proxy_settings.listener_properties[0].port #=> Integer
3170
+ # resp.firewall.proxy_settings.listener_properties[0].type #=> String, one of "HTTP", "HTTPS"
3171
+ # resp.firewall.no_source_preservation #=> Boolean
3172
+ # resp.firewall.vpc_endpoint.vpc_id #=> String
3173
+ # resp.firewall.vpc_endpoint.subnet_mappings #=> Array
3174
+ # resp.firewall.vpc_endpoint.subnet_mappings[0].subnet_id #=> String
3175
+ # resp.firewall.vpc_endpoint.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4", "IPV6"
3074
3176
  # resp.firewall_status.status #=> String, one of "PROVISIONING", "DELETING", "READY"
3075
3177
  # resp.firewall_status.configuration_sync_state_summary #=> String, one of "PENDING", "IN_SYNC", "CAPACITY_CONSTRAINED"
3076
3178
  # resp.firewall_status.sync_states #=> Hash
@@ -3078,9 +3180,15 @@ module Aws::NetworkFirewall
3078
3180
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.endpoint_id #=> String
3079
3181
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.status #=> String, one of "CREATING", "DELETING", "FAILED", "ERROR", "SCALING", "READY"
3080
3182
  # resp.firewall_status.sync_states["AvailabilityZone"].attachment.status_message #=> String
3183
+ # resp.firewall_status.sync_states["AvailabilityZone"].attachment.dns_name #=> String
3081
3184
  # resp.firewall_status.sync_states["AvailabilityZone"].config #=> Hash
3082
3185
  # resp.firewall_status.sync_states["AvailabilityZone"].config["ResourceName"].sync_status #=> String, one of "PENDING", "IN_SYNC", "CAPACITY_CONSTRAINED", "NOT_SUBSCRIBED", "DEPRECATED"
3083
3186
  # resp.firewall_status.sync_states["AvailabilityZone"].config["ResourceName"].update_token #=> String
3187
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments #=> Array
3188
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].nat_gateway_id #=> String
3189
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].status #=> String, one of "CREATING", "READY", "UPDATING", "FAILED", "DELETING"
3190
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].status_message #=> String
3191
+ # resp.firewall_status.sync_states["AvailabilityZone"].nat_gateway_attachments[0].dns_name #=> String
3084
3192
  # resp.firewall_status.capacity_usage_summary.cid_rs.available_cidr_count #=> Integer
3085
3193
  # resp.firewall_status.capacity_usage_summary.cid_rs.utilized_cidr_count #=> Integer
3086
3194
  # resp.firewall_status.capacity_usage_summary.cid_rs.ip_set_references #=> Hash
@@ -3988,6 +4096,7 @@ module Aws::NetworkFirewall
3988
4096
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.endpoint_id #=> String
3989
4097
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.status #=> String, one of "CREATING", "DELETING", "FAILED", "ERROR", "SCALING", "READY"
3990
4098
  # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.status_message #=> String
4099
+ # resp.vpc_endpoint_association_status.association_sync_state["AvailabilityZone"].attachment.dns_name #=> String
3991
4100
  #
3992
4101
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeVpcEndpointAssociation AWS API Documentation
3993
4102
  #
@@ -4376,8 +4485,9 @@ module Aws::NetworkFirewall
4376
4485
  req.send_request(options)
4377
4486
  end
4378
4487
 
4379
- # Retrieves the metadata for the container associations that you have
4380
- # defined. You can optionally page through results.
4488
+ # Lists the container associations in your account and Region. Use the
4489
+ # `NextToken` parameter in subsequent requests to retrieve additional
4490
+ # results.
4381
4491
  #
4382
4492
  # @option params [Integer] :max_results
4383
4493
  # The maximum number of objects that you want Network Firewall to return
@@ -5594,43 +5704,54 @@ module Aws::NetworkFirewall
5594
5704
  req.send_request(options)
5595
5705
  end
5596
5706
 
5597
- # Updates the properties of an existing container association. Use this
5598
- # to modify the container monitoring configurations or description.
5707
+ # Updates the monitoring configurations and description of a container
5708
+ # association. You can't change the container type after creation.
5709
+ # Provide an update token to enable optimistic concurrency control.
5599
5710
  #
5600
5711
  # @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.
5712
+ # The descriptive name of the container association.
5713
+ #
5714
+ # You must specify the ARN or the name, and you can specify both.
5603
5715
  #
5604
5716
  # @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.
5717
+ # The Amazon Resource Name (ARN) of the container association.
5718
+ #
5719
+ # You must specify the ARN or the name, and you can specify both.
5607
5720
  #
5608
5721
  # @option params [String] :description
5609
- # A description of the container association.
5722
+ # A description of the container association. When omitted, the existing
5723
+ # description remains unchanged. To clear the description, pass an empty
5724
+ # string.
5610
5725
  #
5611
5726
  # @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.
5727
+ # The container type. This value must match the existing type and can't
5728
+ # be changed. Valid values:
5729
+ #
5730
+ # * `ECS` - Amazon Elastic Container Service
5731
+ #
5732
+ # * `EKS` - Amazon Elastic Kubernetes Service
5614
5733
  #
5615
5734
  # @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.
5735
+ # The updated monitoring configurations for the container association.
5736
+ # Each configuration specifies an Amazon ECS or Amazon EKS cluster to
5737
+ # monitor and optional attribute filters.
5618
5738
  #
5619
5739
  # @option params [Array<Types::Tag>] :tags
5620
- # The key:value pairs associated with the resource.
5740
+ # The key:value pairs to associate with the resource.
5621
5741
  #
5622
5742
  # @option params [required, String] :update_token
5623
5743
  # A token used for optimistic locking. Network Firewall returns a token
5624
5744
  # to your requests that access the container association. The token
5625
5745
  # 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.
5746
+ # the request.
5747
+ #
5748
+ # To make changes to the container association, you provide the token in
5749
+ # your request. Network Firewall uses the token to ensure that the
5750
+ # container association hasn't changed since you last retrieved it. If
5751
+ # it has changed, the operation fails with an `InvalidTokenException`.
5752
+ # If this happens, retrieve the container association again to get a
5753
+ # current copy of it with a current token. Reapply your changes as
5754
+ # needed, then try the operation again using the new token.
5634
5755
  #
5635
5756
  # @return [Types::UpdateContainerAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5636
5757
  #
@@ -6739,6 +6860,87 @@ module Aws::NetworkFirewall
6739
6860
  req.send_request(options)
6740
6861
  end
6741
6862
 
6863
+ # Modifies the proxy listener configuration of a proxy mode firewall.
6864
+ # Proxy mode firewalls are created with `NoSourcePreservation` set to
6865
+ # `TRUE`. Use this operation to change the ports and protocols on which
6866
+ # the firewall's proxy listens for traffic.
6867
+ #
6868
+ # @option params [String] :firewall_arn
6869
+ # The Amazon Resource Name (ARN) of the firewall.
6870
+ #
6871
+ # You must specify the ARN or the name, and you can specify both.
6872
+ #
6873
+ # @option params [String] :firewall_name
6874
+ # The descriptive name of the firewall. You can't change the name of a
6875
+ # firewall after you create it.
6876
+ #
6877
+ # You must specify the ARN or the name, and you can specify both.
6878
+ #
6879
+ # @option params [String] :update_token
6880
+ # An optional token that you can use for optimistic locking. Network
6881
+ # Firewall returns a token to your requests that access the firewall.
6882
+ # The token marks the state of the firewall resource at the time of the
6883
+ # request.
6884
+ #
6885
+ # To make an unconditional change to the firewall, omit the token in
6886
+ # your update request. Without the token, Network Firewall performs your
6887
+ # updates regardless of whether the firewall has changed since you last
6888
+ # retrieved it.
6889
+ #
6890
+ # To make a conditional change to the firewall, provide the token in
6891
+ # your update request. Network Firewall uses the token to ensure that
6892
+ # the firewall hasn't changed since you last retrieved it. If it has
6893
+ # changed, the operation fails with an `InvalidTokenException`. If this
6894
+ # happens, retrieve the firewall again to get a current copy of it with
6895
+ # a new token. Reapply your changes as needed, then try the operation
6896
+ # again using the new token.
6897
+ #
6898
+ # @option params [Types::ProxySettings] :proxy_settings
6899
+ # The proxy listener configuration to set on the firewall. This
6900
+ # specifies the ports and protocols on which the firewall's proxy
6901
+ # listens for traffic.
6902
+ #
6903
+ # @return [Types::UpdateProxySettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6904
+ #
6905
+ # * {Types::UpdateProxySettingsResponse#firewall_arn #firewall_arn} => String
6906
+ # * {Types::UpdateProxySettingsResponse#firewall_name #firewall_name} => String
6907
+ # * {Types::UpdateProxySettingsResponse#update_token #update_token} => String
6908
+ # * {Types::UpdateProxySettingsResponse#proxy_settings #proxy_settings} => Types::ProxySettings
6909
+ #
6910
+ # @example Request syntax with placeholder values
6911
+ #
6912
+ # resp = client.update_proxy_settings({
6913
+ # firewall_arn: "ResourceArn",
6914
+ # firewall_name: "ResourceName",
6915
+ # update_token: "UpdateToken",
6916
+ # proxy_settings: {
6917
+ # listener_properties: [ # required
6918
+ # {
6919
+ # port: 1,
6920
+ # type: "HTTP", # accepts HTTP, HTTPS
6921
+ # },
6922
+ # ],
6923
+ # },
6924
+ # })
6925
+ #
6926
+ # @example Response structure
6927
+ #
6928
+ # resp.firewall_arn #=> String
6929
+ # resp.firewall_name #=> String
6930
+ # resp.update_token #=> String
6931
+ # resp.proxy_settings.listener_properties #=> Array
6932
+ # resp.proxy_settings.listener_properties[0].port #=> Integer
6933
+ # resp.proxy_settings.listener_properties[0].type #=> String, one of "HTTP", "HTTPS"
6934
+ #
6935
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateProxySettings AWS API Documentation
6936
+ #
6937
+ # @overload update_proxy_settings(params = {})
6938
+ # @param [Hash] params ({})
6939
+ def update_proxy_settings(params = {}, options = {})
6940
+ req = build_request(:update_proxy_settings, params)
6941
+ req.send_request(options)
6942
+ end
6943
+
6742
6944
  # Updates the rule settings for the specified rule group. You use a rule
6743
6945
  # group by reference in one or more firewall policies. When you modify a
6744
6946
  # rule group, you modify all firewall policies that use the rule group.
@@ -7262,7 +7464,7 @@ module Aws::NetworkFirewall
7262
7464
  tracer: tracer
7263
7465
  )
7264
7466
  context[:gem_name] = 'aws-sdk-networkfirewall'
7265
- context[:gem_version] = '1.94.0'
7467
+ context[:gem_version] = '1.96.0'
7266
7468
  Seahorse::Client::Request.new(handlers, context)
7267
7469
  end
7268
7470