aws-sdk-elasticloadbalancingv2 1.77.0 → 1.78.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dce42133584148f3e93805e040fdd7262f23c699e1ec42cb93009ae7aa14b1ac
4
- data.tar.gz: c12e33bc8caba9e7795e61c8ca709fe9f7a52c8afb72769c64b6c22dbd0ebad2
3
+ metadata.gz: 2c268c3d3abc90398548fc4f10535926b3e247a0c16ac3a766419f096a8a77a1
4
+ data.tar.gz: 0d90844622e4c9cbccf7b387246725e02de30aa090e06058ebf96ea298dd855e
5
5
  SHA512:
6
- metadata.gz: 84172bb723d8a11c7cbfca27806eb6292a34d394a67ae74d515471692d22b9d017fbda814941b02b15c08a2d72ccff6a16553e125341b1e50cf94e6ddcfd7014
7
- data.tar.gz: 77a33412925a7d23ac85217b9dd06f6e77a4a2197fdb542bffb44d070c438a117d3fba683959af91466ac2ac31aed9eef2c73dfacaa6e42980214c23860c2e83
6
+ metadata.gz: 6793c1566a9ac786e71960785d8d26fff651c5cea9e0dc255751f5c4dfa87ee3b6a937de659a42d3c51b8d767a2575211fbec74ec7c4fb8be26296c2c0fb947f
7
+ data.tar.gz: cacf818a78ecaafc2547fdc4969c067482dbb91c25e787d5a80ba9f979ef8d6113c0f8e09bc4d436e1883ed4e54110a6ad34ef263c18eb6cd79b9d8d7a04413d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2022-06-29)
5
+ ------------------
6
+
7
+ * Feature - This release adds two attributes for ALB. One, helps to preserve the host header and the other helps to modify, preserve, or remove the X-Forwarded-For header in the HTTP request.
8
+
4
9
  1.77.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.78.0
@@ -809,7 +809,9 @@ module Aws::ElasticLoadBalancingV2
809
809
  #
810
810
  # @option params [Array<String>] :subnets
811
811
  # The IDs of the public subnets. You can specify only one subnet per
812
- # Availability Zone. You must specify either subnets or subnet mappings.
812
+ # Availability Zone. You must specify either subnets or subnet mappings,
813
+ # but not both. To specify an Elastic IP address, specify subnet
814
+ # mappings instead of subnets.
813
815
  #
814
816
  # \[Application Load Balancers\] You must specify subnets from at least
815
817
  # two Availability Zones.
@@ -828,7 +830,8 @@ module Aws::ElasticLoadBalancingV2
828
830
  #
829
831
  # @option params [Array<Types::SubnetMapping>] :subnet_mappings
830
832
  # The IDs of the public subnets. You can specify only one subnet per
831
- # Availability Zone. You must specify either subnets or subnet mappings.
833
+ # Availability Zone. You must specify either subnets or subnet mappings,
834
+ # but not both.
832
835
  #
833
836
  # \[Application Load Balancers\] You must specify subnets from at least
834
837
  # two Availability Zones. You cannot specify Elastic IP addresses for
@@ -1393,11 +1396,12 @@ module Aws::ElasticLoadBalancingV2
1393
1396
  #
1394
1397
  # @option params [Integer] :health_check_interval_seconds
1395
1398
  # The approximate amount of time, in seconds, between health checks of
1396
- # an individual target. If the target group protocol is TCP, TLS, UDP,
1397
- # or TCP\_UDP, the supported values are 10 and 30 seconds. If the target
1398
- # group protocol is HTTP or HTTPS, the default is 30 seconds. If the
1399
- # target group protocol is GENEVE, the default is 10 seconds. If the
1400
- # target type is `lambda`, the default is 35 seconds.
1399
+ # an individual target. If the target group protocol is HTTP or HTTPS,
1400
+ # the default is 30 seconds. If the target group protocol is TCP, TLS,
1401
+ # UDP, or TCP\_UDP, the supported values are 10 and 30 seconds and the
1402
+ # default is 30 seconds. If the target group protocol is GENEVE, the
1403
+ # default is 10 seconds. If the target type is `lambda`, the default is
1404
+ # 35 seconds.
1401
1405
  #
1402
1406
  # @option params [Integer] :health_check_timeout_seconds
1403
1407
  # The amount of time, in seconds, during which no response from a target
@@ -3555,6 +3559,10 @@ module Aws::ElasticLoadBalancingV2
3555
3559
  # Modifies the health checks used when evaluating the health state of
3556
3560
  # the targets in the specified target group.
3557
3561
  #
3562
+ # If the protocol of the target group is TCP, TLS, UDP, or TCP\_UDP, you
3563
+ # can't modify the health check protocol, interval, timeout, or success
3564
+ # codes.
3565
+ #
3558
3566
  # @option params [required, String] :target_group_arn
3559
3567
  # The Amazon Resource Name (ARN) of the target group.
3560
3568
  #
@@ -3568,8 +3576,6 @@ module Aws::ElasticLoadBalancingV2
3568
3576
  # TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are not
3569
3577
  # supported for health checks.
3570
3578
  #
3571
- # With Network Load Balancers, you can't modify this setting.
3572
- #
3573
3579
  # @option params [String] :health_check_port
3574
3580
  # The port the load balancer uses when performing health checks on
3575
3581
  # targets.
@@ -3592,14 +3598,10 @@ module Aws::ElasticLoadBalancingV2
3592
3598
  # an individual target. For TCP health checks, the supported values are
3593
3599
  # 10 or 30 seconds.
3594
3600
  #
3595
- # With Network Load Balancers, you can't modify this setting.
3596
- #
3597
3601
  # @option params [Integer] :health_check_timeout_seconds
3598
3602
  # \[HTTP/HTTPS health checks\] The amount of time, in seconds, during
3599
3603
  # which no response means a failed health check.
3600
3604
  #
3601
- # With Network Load Balancers, you can't modify this setting.
3602
- #
3603
3605
  # @option params [Integer] :healthy_threshold_count
3604
3606
  # The number of consecutive health checks successes required before
3605
3607
  # considering an unhealthy target healthy.
@@ -3614,8 +3616,6 @@ module Aws::ElasticLoadBalancingV2
3614
3616
  # \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
3615
3617
  # checking for a successful response from a target.
3616
3618
  #
3617
- # With Network Load Balancers, you can't modify this setting.
3618
- #
3619
3619
  # @return [Types::ModifyTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3620
3620
  #
3621
3621
  # * {Types::ModifyTargetGroupOutput#target_groups #target_groups} => Array&lt;Types::TargetGroup&gt;
@@ -4313,7 +4313,7 @@ module Aws::ElasticLoadBalancingV2
4313
4313
  params: params,
4314
4314
  config: config)
4315
4315
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4316
- context[:gem_version] = '1.77.0'
4316
+ context[:gem_version] = '1.78.0'
4317
4317
  Seahorse::Client::Request.new(handlers, context)
4318
4318
  end
4319
4319
 
@@ -740,7 +740,8 @@ module Aws::ElasticLoadBalancingV2
740
740
  # @!attribute [rw] subnets
741
741
  # The IDs of the public subnets. You can specify only one subnet per
742
742
  # Availability Zone. You must specify either subnets or subnet
743
- # mappings.
743
+ # mappings, but not both. To specify an Elastic IP address, specify
744
+ # subnet mappings instead of subnets.
744
745
  #
745
746
  # \[Application Load Balancers\] You must specify subnets from at
746
747
  # least two Availability Zones.
@@ -761,7 +762,7 @@ module Aws::ElasticLoadBalancingV2
761
762
  # @!attribute [rw] subnet_mappings
762
763
  # The IDs of the public subnets. You can specify only one subnet per
763
764
  # Availability Zone. You must specify either subnets or subnet
764
- # mappings.
765
+ # mappings, but not both.
765
766
  #
766
767
  # \[Application Load Balancers\] You must specify subnets from at
767
768
  # least two Availability Zones. You cannot specify Elastic IP
@@ -1111,11 +1112,12 @@ module Aws::ElasticLoadBalancingV2
1111
1112
  #
1112
1113
  # @!attribute [rw] health_check_interval_seconds
1113
1114
  # The approximate amount of time, in seconds, between health checks of
1114
- # an individual target. If the target group protocol is TCP, TLS, UDP,
1115
- # or TCP\_UDP, the supported values are 10 and 30 seconds. If the
1116
- # target group protocol is HTTP or HTTPS, the default is 30 seconds.
1117
- # If the target group protocol is GENEVE, the default is 10 seconds.
1118
- # If the target type is `lambda`, the default is 35 seconds.
1115
+ # an individual target. If the target group protocol is HTTP or HTTPS,
1116
+ # the default is 30 seconds. If the target group protocol is TCP, TLS,
1117
+ # UDP, or TCP\_UDP, the supported values are 10 and 30 seconds and the
1118
+ # default is 30 seconds. If the target group protocol is GENEVE, the
1119
+ # default is 10 seconds. If the target type is `lambda`, the default
1120
+ # is 35 seconds.
1119
1121
  # @return [Integer]
1120
1122
  #
1121
1123
  # @!attribute [rw] health_check_timeout_seconds
@@ -2387,7 +2389,7 @@ module Aws::ElasticLoadBalancingV2
2387
2389
  # * `access_logs.s3.prefix` - The prefix for the location in the S3
2388
2390
  # bucket for the access logs.
2389
2391
  #
2390
- # * `ipv6.deny-all-igw-traffic` - Blocks internet gateway (IGW) access
2392
+ # * `ipv6.deny_all_igw_traffic` - Blocks internet gateway (IGW) access
2391
2393
  # to the load balancer. It is set to `false` for internet-facing
2392
2394
  # load balancers and `true` for internal load balancers, preventing
2393
2395
  # unintended access to your internal load balancer through an
@@ -2410,6 +2412,11 @@ module Aws::ElasticLoadBalancingV2
2410
2412
  # load balancer (`true`) or routed to targets (`false`). The default
2411
2413
  # is `false`.
2412
2414
  #
2415
+ # * `routing.http.preserve_host_header.enabled` - Indicates whether
2416
+ # the Application Load Balancer should preserve the `Host` header in
2417
+ # the HTTP request and send it to the target without any change. The
2418
+ # possible values are `true` and `false`. The default is `false`.
2419
+ #
2413
2420
  # * `routing.http.x_amzn_tls_version_and_cipher_suite.enabled` -
2414
2421
  # Indicates whether the two headers (`x-amzn-tls-version` and
2415
2422
  # `x-amzn-tls-cipher-suite`), which contain information about the
@@ -2426,6 +2433,24 @@ module Aws::ElasticLoadBalancingV2
2426
2433
  # client used to connect to the load balancer. The possible values
2427
2434
  # are `true` and `false`. The default is `false`.
2428
2435
  #
2436
+ # * `routing.http.xff_header_processing.mode` - Enables you to modify,
2437
+ # preserve, or remove the `X-Forwarded-For` header in the HTTP
2438
+ # request before the Application Load Balancer sends the request to
2439
+ # the target. The possible values are `append`, `preserve`, and
2440
+ # `remove`. The default is `append`.
2441
+ #
2442
+ # * If the value is `append`, the Application Load Balancer adds the
2443
+ # client IP address (of the last hop) to the `X-Forwarded-For`
2444
+ # header in the HTTP request before it sends it to targets.
2445
+ #
2446
+ # * If the value is `preserve` the Application Load Balancer
2447
+ # preserves the `X-Forwarded-For` header in the HTTP request, and
2448
+ # sends it to targets without any change.
2449
+ #
2450
+ # * If the value is `remove`, the Application Load Balancer removes
2451
+ # the `X-Forwarded-For` header in the HTTP request before it sends
2452
+ # it to targets.
2453
+ #
2429
2454
  # * `routing.http2.enabled` - Indicates whether HTTP/2 is enabled. The
2430
2455
  # possible values are `true` and `false`. The default is `true`.
2431
2456
  # Elastic Load Balancing requires that message header names contain
@@ -2944,8 +2969,6 @@ module Aws::ElasticLoadBalancingV2
2944
2969
  # health checks only if the protocol of the target group is TCP, TLS,
2945
2970
  # UDP, or TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are
2946
2971
  # not supported for health checks.
2947
- #
2948
- # With Network Load Balancers, you can't modify this setting.
2949
2972
  # @return [String]
2950
2973
  #
2951
2974
  # @!attribute [rw] health_check_port
@@ -2972,15 +2995,11 @@ module Aws::ElasticLoadBalancingV2
2972
2995
  # The approximate amount of time, in seconds, between health checks of
2973
2996
  # an individual target. For TCP health checks, the supported values
2974
2997
  # are 10 or 30 seconds.
2975
- #
2976
- # With Network Load Balancers, you can't modify this setting.
2977
2998
  # @return [Integer]
2978
2999
  #
2979
3000
  # @!attribute [rw] health_check_timeout_seconds
2980
3001
  # \[HTTP/HTTPS health checks\] The amount of time, in seconds, during
2981
3002
  # which no response means a failed health check.
2982
- #
2983
- # With Network Load Balancers, you can't modify this setting.
2984
3003
  # @return [Integer]
2985
3004
  #
2986
3005
  # @!attribute [rw] healthy_threshold_count
@@ -2998,8 +3017,6 @@ module Aws::ElasticLoadBalancingV2
2998
3017
  # @!attribute [rw] matcher
2999
3018
  # \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
3000
3019
  # checking for a successful response from a target.
3001
- #
3002
- # With Network Load Balancers, you can't modify this setting.
3003
3020
  # @return [Types::Matcher]
3004
3021
  #
3005
3022
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroupInput AWS API Documentation
@@ -3371,7 +3388,8 @@ module Aws::ElasticLoadBalancingV2
3371
3388
  # Each rule can optionally include up to one of each of the following
3372
3389
  # conditions: `http-request-method`, `host-header`, `path-pattern`, and
3373
3390
  # `source-ip`. Each rule can also optionally include one or more of each
3374
- # of the following conditions: `http-header` and `query-string`.
3391
+ # of the following conditions: `http-header` and `query-string`. Note
3392
+ # that the value for a condition cannot be empty.
3375
3393
  #
3376
3394
  # @note When making an API call, you may pass RuleCondition
3377
3395
  # data as a hash:
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
49
49
  # @!group service
50
50
  module Aws::ElasticLoadBalancingV2
51
51
 
52
- GEM_VERSION = '1.77.0'
52
+ GEM_VERSION = '1.78.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticloadbalancingv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.77.0
4
+ version: 1.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core