aws-sdk-elasticloadbalancingv2 1.45.1 → 1.50.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-elasticloadbalancingv2.rb +4 -2
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +64 -20
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +7 -0
- data/lib/aws-sdk-elasticloadbalancingv2/customizations.rb +1 -0
- data/lib/aws-sdk-elasticloadbalancingv2/errors.rb +2 -0
- data/lib/aws-sdk-elasticloadbalancingv2/resource.rb +2 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +171 -27
- data/lib/aws-sdk-elasticloadbalancingv2/waiters.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3258bea9f984201a7dc34d43e2389ef0b3e9130156a1f53632003f29224e8f5c
|
4
|
+
data.tar.gz: 6a3cb9593599497f2b1ce7e62dfbe92c2cc4da908943f619f4e577c6f201579f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e98aae14b82f6f2cf7a0f4d0c59aa3eb4caeaed237698454c973701f6f834410418ce1378328b45cbe0f5238214b2f6ea60ef2c5aef98ed261843bdc23891eda
|
7
|
+
data.tar.gz: 7741aa4fdc0fd2fd8c6884e7a3b2a7c7e41a3f7a0250f406020d3f2392e44d96e2dd461cd2e265ea3bc36e278aa30aae17ddf26135e5f0e19c5c88589a0a4fff
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -43,9 +45,9 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
|
|
43
45
|
#
|
44
46
|
# See {Errors} for more information.
|
45
47
|
#
|
46
|
-
#
|
48
|
+
# @!group service
|
47
49
|
module Aws::ElasticLoadBalancingV2
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.50.0'
|
50
52
|
|
51
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::ElasticLoadBalancingV2
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::ElasticLoadBalancingV2
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -818,6 +835,12 @@ module Aws::ElasticLoadBalancingV2
|
|
818
835
|
# \[Application Load Balancers\] You must specify subnets from at least
|
819
836
|
# two Availability Zones.
|
820
837
|
#
|
838
|
+
# \[Application Load Balancers on Outposts\] You must specify one
|
839
|
+
# Outpost subnet.
|
840
|
+
#
|
841
|
+
# \[Application Load Balancers on Local Zones\] You can specify subnets
|
842
|
+
# from one or more Local Zones.
|
843
|
+
#
|
821
844
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
822
845
|
# Availability Zones.
|
823
846
|
#
|
@@ -829,6 +852,12 @@ module Aws::ElasticLoadBalancingV2
|
|
829
852
|
# two Availability Zones. You cannot specify Elastic IP addresses for
|
830
853
|
# your subnets.
|
831
854
|
#
|
855
|
+
# \[Application Load Balancers on Outposts\] You must specify one
|
856
|
+
# Outpost subnet.
|
857
|
+
#
|
858
|
+
# \[Application Load Balancers on Local Zones\] You can specify subnets
|
859
|
+
# from one or more Local Zones.
|
860
|
+
#
|
832
861
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
833
862
|
# Availability Zones. You can specify one Elastic IP address per subnet
|
834
863
|
# if you need static IP addresses for your internet-facing load
|
@@ -866,6 +895,10 @@ module Aws::ElasticLoadBalancingV2
|
|
866
895
|
# IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses).
|
867
896
|
# Internal load balancers must use `ipv4`.
|
868
897
|
#
|
898
|
+
# @option params [String] :customer_owned_ipv_4_pool
|
899
|
+
# \[Application Load Balancers on Outposts\] The ID of the
|
900
|
+
# customer-owned address pool (CoIP pool).
|
901
|
+
#
|
869
902
|
# @return [Types::CreateLoadBalancerOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
870
903
|
#
|
871
904
|
# * {Types::CreateLoadBalancerOutput#load_balancers #load_balancers} => Array<Types::LoadBalancer>
|
@@ -984,6 +1017,7 @@ module Aws::ElasticLoadBalancingV2
|
|
984
1017
|
# ],
|
985
1018
|
# type: "application", # accepts application, network
|
986
1019
|
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
1020
|
+
# customer_owned_ipv_4_pool: "CustomerOwnedIpv4Pool",
|
987
1021
|
# })
|
988
1022
|
#
|
989
1023
|
# @example Response structure
|
@@ -1002,6 +1036,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1002
1036
|
# resp.load_balancers[0].availability_zones #=> Array
|
1003
1037
|
# resp.load_balancers[0].availability_zones[0].zone_name #=> String
|
1004
1038
|
# resp.load_balancers[0].availability_zones[0].subnet_id #=> String
|
1039
|
+
# resp.load_balancers[0].availability_zones[0].outpost_id #=> String
|
1005
1040
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses #=> Array
|
1006
1041
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
1007
1042
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
@@ -1009,6 +1044,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1009
1044
|
# resp.load_balancers[0].security_groups #=> Array
|
1010
1045
|
# resp.load_balancers[0].security_groups[0] #=> String
|
1011
1046
|
# resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
1047
|
+
# resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
|
1012
1048
|
#
|
1013
1049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateLoadBalancer AWS API Documentation
|
1014
1050
|
#
|
@@ -1022,11 +1058,12 @@ module Aws::ElasticLoadBalancingV2
|
|
1022
1058
|
# Creates a rule for the specified listener. The listener must be
|
1023
1059
|
# associated with an Application Load Balancer.
|
1024
1060
|
#
|
1025
|
-
#
|
1026
|
-
#
|
1027
|
-
#
|
1028
|
-
#
|
1029
|
-
#
|
1061
|
+
# Each rule consists of a priority, one or more actions, and one or more
|
1062
|
+
# conditions. Rules are evaluated in priority order, from the lowest
|
1063
|
+
# value to the highest value. When the conditions for a rule are met,
|
1064
|
+
# its actions are performed. If the conditions for no rules are met, the
|
1065
|
+
# actions for the default rule are performed. For more information, see
|
1066
|
+
# [Listener Rules][1] in the *Application Load Balancers Guide*.
|
1030
1067
|
#
|
1031
1068
|
# To view your current rules, use DescribeRules. To update a rule, use
|
1032
1069
|
# ModifyRule. To set the priorities of your rules, use
|
@@ -1040,10 +1077,11 @@ module Aws::ElasticLoadBalancingV2
|
|
1040
1077
|
# The Amazon Resource Name (ARN) of the listener.
|
1041
1078
|
#
|
1042
1079
|
# @option params [required, Array<Types::RuleCondition>] :conditions
|
1043
|
-
# The conditions. Each rule can include
|
1044
|
-
# conditions: `http-request-method`, `host-header`,
|
1045
|
-
# `
|
1046
|
-
# `http-header` and
|
1080
|
+
# The conditions. Each rule can optionally include up to one of each of
|
1081
|
+
# the following conditions: `http-request-method`, `host-header`,
|
1082
|
+
# `path-pattern`, and `source-ip`. Each rule can also optionally include
|
1083
|
+
# one or more of each of the following conditions: `http-header` and
|
1084
|
+
# `query-string`.
|
1047
1085
|
#
|
1048
1086
|
# @option params [required, Integer] :priority
|
1049
1087
|
# The rule priority. A listener can't have multiple rules with the same
|
@@ -1410,8 +1448,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1410
1448
|
# more than one target type.
|
1411
1449
|
#
|
1412
1450
|
# * `instance` - Targets are specified by instance ID. This is the
|
1413
|
-
# default value.
|
1414
|
-
# target type must be `instance`.
|
1451
|
+
# default value.
|
1415
1452
|
#
|
1416
1453
|
# * `ip` - Targets are specified by IP address. You can specify IP
|
1417
1454
|
# addresses from the subnets of the virtual private cloud (VPC) for
|
@@ -1589,6 +1626,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1589
1626
|
|
1590
1627
|
# Deletes the specified rule.
|
1591
1628
|
#
|
1629
|
+
# You can't delete the default rule.
|
1630
|
+
#
|
1592
1631
|
# @option params [required, String] :rule_arn
|
1593
1632
|
# The Amazon Resource Name (ARN) of the rule.
|
1594
1633
|
#
|
@@ -2102,6 +2141,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2102
2141
|
# resp.load_balancers[0].availability_zones #=> Array
|
2103
2142
|
# resp.load_balancers[0].availability_zones[0].zone_name #=> String
|
2104
2143
|
# resp.load_balancers[0].availability_zones[0].subnet_id #=> String
|
2144
|
+
# resp.load_balancers[0].availability_zones[0].outpost_id #=> String
|
2105
2145
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses #=> Array
|
2106
2146
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
2107
2147
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
@@ -2109,6 +2149,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2109
2149
|
# resp.load_balancers[0].security_groups #=> Array
|
2110
2150
|
# resp.load_balancers[0].security_groups[0] #=> String
|
2111
2151
|
# resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
2152
|
+
# resp.load_balancers[0].customer_owned_ipv_4_pool #=> String
|
2112
2153
|
# resp.next_marker #=> String
|
2113
2154
|
#
|
2114
2155
|
#
|
@@ -3593,7 +3634,9 @@ module Aws::ElasticLoadBalancingV2
|
|
3593
3634
|
#
|
3594
3635
|
# @option params [Types::Matcher] :matcher
|
3595
3636
|
# \[HTTP/HTTPS health checks\] The HTTP codes to use when checking for a
|
3596
|
-
# successful response from a target.
|
3637
|
+
# successful response from a target. The possible values are from 200 to
|
3638
|
+
# 499. You can specify multiple values (for example, "200,202") or a
|
3639
|
+
# range of values (for example, "200-299"). The default is 200.
|
3597
3640
|
#
|
3598
3641
|
# With Network Load Balancers, you can't modify this setting.
|
3599
3642
|
#
|
@@ -4242,6 +4285,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4242
4285
|
# resp.availability_zones #=> Array
|
4243
4286
|
# resp.availability_zones[0].zone_name #=> String
|
4244
4287
|
# resp.availability_zones[0].subnet_id #=> String
|
4288
|
+
# resp.availability_zones[0].outpost_id #=> String
|
4245
4289
|
# resp.availability_zones[0].load_balancer_addresses #=> Array
|
4246
4290
|
# resp.availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
4247
4291
|
# resp.availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
@@ -4269,7 +4313,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4269
4313
|
params: params,
|
4270
4314
|
config: config)
|
4271
4315
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4272
|
-
context[:gem_version] = '1.
|
4316
|
+
context[:gem_version] = '1.50.0'
|
4273
4317
|
Seahorse::Client::Request.new(handlers, context)
|
4274
4318
|
end
|
4275
4319
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -72,6 +74,7 @@ module Aws::ElasticLoadBalancingV2
|
|
72
74
|
CreateTargetGroupInput = Shapes::StructureShape.new(name: 'CreateTargetGroupInput')
|
73
75
|
CreateTargetGroupOutput = Shapes::StructureShape.new(name: 'CreateTargetGroupOutput')
|
74
76
|
CreatedTime = Shapes::TimestampShape.new(name: 'CreatedTime')
|
77
|
+
CustomerOwnedIpv4Pool = Shapes::StringShape.new(name: 'CustomerOwnedIpv4Pool')
|
75
78
|
DNSName = Shapes::StringShape.new(name: 'DNSName')
|
76
79
|
Default = Shapes::BooleanShape.new(name: 'Default')
|
77
80
|
DeleteListenerInput = Shapes::StructureShape.new(name: 'DeleteListenerInput')
|
@@ -177,6 +180,7 @@ module Aws::ElasticLoadBalancingV2
|
|
177
180
|
ModifyTargetGroupOutput = Shapes::StructureShape.new(name: 'ModifyTargetGroupOutput')
|
178
181
|
Name = Shapes::StringShape.new(name: 'Name')
|
179
182
|
OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
|
183
|
+
OutpostId = Shapes::StringShape.new(name: 'OutpostId')
|
180
184
|
PageSize = Shapes::IntegerShape.new(name: 'PageSize')
|
181
185
|
Path = Shapes::StringShape.new(name: 'Path')
|
182
186
|
PathPatternConditionConfig = Shapes::StructureShape.new(name: 'PathPatternConditionConfig')
|
@@ -350,6 +354,7 @@ module Aws::ElasticLoadBalancingV2
|
|
350
354
|
|
351
355
|
AvailabilityZone.add_member(:zone_name, Shapes::ShapeRef.new(shape: ZoneName, location_name: "ZoneName"))
|
352
356
|
AvailabilityZone.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
|
357
|
+
AvailabilityZone.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostId, location_name: "OutpostId"))
|
353
358
|
AvailabilityZone.add_member(:load_balancer_addresses, Shapes::ShapeRef.new(shape: LoadBalancerAddresses, location_name: "LoadBalancerAddresses"))
|
354
359
|
AvailabilityZone.struct_class = Types::AvailabilityZone
|
355
360
|
|
@@ -391,6 +396,7 @@ module Aws::ElasticLoadBalancingV2
|
|
391
396
|
CreateLoadBalancerInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
392
397
|
CreateLoadBalancerInput.add_member(:type, Shapes::ShapeRef.new(shape: LoadBalancerTypeEnum, location_name: "Type"))
|
393
398
|
CreateLoadBalancerInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
399
|
+
CreateLoadBalancerInput.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CustomerOwnedIpv4Pool, location_name: "CustomerOwnedIpv4Pool"))
|
394
400
|
CreateLoadBalancerInput.struct_class = Types::CreateLoadBalancerInput
|
395
401
|
|
396
402
|
CreateLoadBalancerOutput.add_member(:load_balancers, Shapes::ShapeRef.new(shape: LoadBalancers, location_name: "LoadBalancers"))
|
@@ -621,6 +627,7 @@ module Aws::ElasticLoadBalancingV2
|
|
621
627
|
LoadBalancer.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
622
628
|
LoadBalancer.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, location_name: "SecurityGroups"))
|
623
629
|
LoadBalancer.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
630
|
+
LoadBalancer.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CustomerOwnedIpv4Pool, location_name: "CustomerOwnedIpv4Pool"))
|
624
631
|
LoadBalancer.struct_class = Types::LoadBalancer
|
625
632
|
|
626
633
|
LoadBalancerAddress.add_member(:ip_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "IpAddress"))
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -16,6 +18,10 @@ module Aws::ElasticLoadBalancingV2
|
|
16
18
|
|
17
19
|
# Information about an action.
|
18
20
|
#
|
21
|
+
# Each rule must include exactly one of the following types of actions:
|
22
|
+
# `forward`, `fixed-response`, or `redirect`, and it must be the last
|
23
|
+
# action to be performed.
|
24
|
+
#
|
19
25
|
# @note When making an API call, you may pass Action
|
20
26
|
# data as a hash:
|
21
27
|
#
|
@@ -104,9 +110,7 @@ module Aws::ElasticLoadBalancingV2
|
|
104
110
|
# @!attribute [rw] order
|
105
111
|
# The order for the action. This value is required for rules with
|
106
112
|
# multiple actions. The action with the lowest value for order is
|
107
|
-
# performed first.
|
108
|
-
# following types of actions: a `forward`, `fixed-response`, or
|
109
|
-
# `redirect`.
|
113
|
+
# performed first.
|
110
114
|
# @return [Integer]
|
111
115
|
#
|
112
116
|
# @!attribute [rw] redirect_config
|
@@ -140,6 +144,7 @@ module Aws::ElasticLoadBalancingV2
|
|
140
144
|
:redirect_config,
|
141
145
|
:fixed_response_config,
|
142
146
|
:forward_config)
|
147
|
+
SENSITIVE = []
|
143
148
|
include Aws::Structure
|
144
149
|
end
|
145
150
|
|
@@ -171,6 +176,7 @@ module Aws::ElasticLoadBalancingV2
|
|
171
176
|
class AddListenerCertificatesInput < Struct.new(
|
172
177
|
:listener_arn,
|
173
178
|
:certificates)
|
179
|
+
SENSITIVE = []
|
174
180
|
include Aws::Structure
|
175
181
|
end
|
176
182
|
|
@@ -182,6 +188,7 @@ module Aws::ElasticLoadBalancingV2
|
|
182
188
|
#
|
183
189
|
class AddListenerCertificatesOutput < Struct.new(
|
184
190
|
:certificates)
|
191
|
+
SENSITIVE = []
|
185
192
|
include Aws::Structure
|
186
193
|
end
|
187
194
|
|
@@ -211,6 +218,7 @@ module Aws::ElasticLoadBalancingV2
|
|
211
218
|
class AddTagsInput < Struct.new(
|
212
219
|
:resource_arns,
|
213
220
|
:tags)
|
221
|
+
SENSITIVE = []
|
214
222
|
include Aws::Structure
|
215
223
|
end
|
216
224
|
|
@@ -302,6 +310,7 @@ module Aws::ElasticLoadBalancingV2
|
|
302
310
|
:session_timeout,
|
303
311
|
:authentication_request_extra_params,
|
304
312
|
:on_unauthenticated_request)
|
313
|
+
SENSITIVE = []
|
305
314
|
include Aws::Structure
|
306
315
|
end
|
307
316
|
|
@@ -414,6 +423,7 @@ module Aws::ElasticLoadBalancingV2
|
|
414
423
|
:authentication_request_extra_params,
|
415
424
|
:on_unauthenticated_request,
|
416
425
|
:use_existing_client_secret)
|
426
|
+
SENSITIVE = []
|
417
427
|
include Aws::Structure
|
418
428
|
end
|
419
429
|
|
@@ -428,6 +438,10 @@ module Aws::ElasticLoadBalancingV2
|
|
428
438
|
# Zone.
|
429
439
|
# @return [String]
|
430
440
|
#
|
441
|
+
# @!attribute [rw] outpost_id
|
442
|
+
# \[Application Load Balancers on Outposts\] The ID of the Outpost.
|
443
|
+
# @return [String]
|
444
|
+
#
|
431
445
|
# @!attribute [rw] load_balancer_addresses
|
432
446
|
# \[Network Load Balancers\] If you need static IP addresses for your
|
433
447
|
# load balancer, you can specify one Elastic IP address per
|
@@ -441,7 +455,9 @@ module Aws::ElasticLoadBalancingV2
|
|
441
455
|
class AvailabilityZone < Struct.new(
|
442
456
|
:zone_name,
|
443
457
|
:subnet_id,
|
458
|
+
:outpost_id,
|
444
459
|
:load_balancer_addresses)
|
460
|
+
SENSITIVE = []
|
445
461
|
include Aws::Structure
|
446
462
|
end
|
447
463
|
|
@@ -477,6 +493,7 @@ module Aws::ElasticLoadBalancingV2
|
|
477
493
|
class Certificate < Struct.new(
|
478
494
|
:certificate_arn,
|
479
495
|
:is_default)
|
496
|
+
SENSITIVE = []
|
480
497
|
include Aws::Structure
|
481
498
|
end
|
482
499
|
|
@@ -501,6 +518,7 @@ module Aws::ElasticLoadBalancingV2
|
|
501
518
|
class Cipher < Struct.new(
|
502
519
|
:name,
|
503
520
|
:priority)
|
521
|
+
SENSITIVE = []
|
504
522
|
include Aws::Structure
|
505
523
|
end
|
506
524
|
|
@@ -696,6 +714,7 @@ module Aws::ElasticLoadBalancingV2
|
|
696
714
|
:certificates,
|
697
715
|
:default_actions,
|
698
716
|
:alpn_policy)
|
717
|
+
SENSITIVE = []
|
699
718
|
include Aws::Structure
|
700
719
|
end
|
701
720
|
|
@@ -707,6 +726,7 @@ module Aws::ElasticLoadBalancingV2
|
|
707
726
|
#
|
708
727
|
class CreateListenerOutput < Struct.new(
|
709
728
|
:listeners)
|
729
|
+
SENSITIVE = []
|
710
730
|
include Aws::Structure
|
711
731
|
end
|
712
732
|
|
@@ -733,6 +753,7 @@ module Aws::ElasticLoadBalancingV2
|
|
733
753
|
# ],
|
734
754
|
# type: "application", # accepts application, network
|
735
755
|
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
756
|
+
# customer_owned_ipv_4_pool: "CustomerOwnedIpv4Pool",
|
736
757
|
# }
|
737
758
|
#
|
738
759
|
# @!attribute [rw] name
|
@@ -752,6 +773,12 @@ module Aws::ElasticLoadBalancingV2
|
|
752
773
|
# \[Application Load Balancers\] You must specify subnets from at
|
753
774
|
# least two Availability Zones.
|
754
775
|
#
|
776
|
+
# \[Application Load Balancers on Outposts\] You must specify one
|
777
|
+
# Outpost subnet.
|
778
|
+
#
|
779
|
+
# \[Application Load Balancers on Local Zones\] You can specify
|
780
|
+
# subnets from one or more Local Zones.
|
781
|
+
#
|
755
782
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
756
783
|
# Availability Zones.
|
757
784
|
# @return [Array<String>]
|
@@ -765,6 +792,12 @@ module Aws::ElasticLoadBalancingV2
|
|
765
792
|
# least two Availability Zones. You cannot specify Elastic IP
|
766
793
|
# addresses for your subnets.
|
767
794
|
#
|
795
|
+
# \[Application Load Balancers on Outposts\] You must specify one
|
796
|
+
# Outpost subnet.
|
797
|
+
#
|
798
|
+
# \[Application Load Balancers on Local Zones\] You can specify
|
799
|
+
# subnets from one or more Local Zones.
|
800
|
+
#
|
768
801
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
769
802
|
# Availability Zones. You can specify one Elastic IP address per
|
770
803
|
# subnet if you need static IP addresses for your internet-facing load
|
@@ -808,6 +841,11 @@ module Aws::ElasticLoadBalancingV2
|
|
808
841
|
# Internal load balancers must use `ipv4`.
|
809
842
|
# @return [String]
|
810
843
|
#
|
844
|
+
# @!attribute [rw] customer_owned_ipv_4_pool
|
845
|
+
# \[Application Load Balancers on Outposts\] The ID of the
|
846
|
+
# customer-owned address pool (CoIP pool).
|
847
|
+
# @return [String]
|
848
|
+
#
|
811
849
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateLoadBalancerInput AWS API Documentation
|
812
850
|
#
|
813
851
|
class CreateLoadBalancerInput < Struct.new(
|
@@ -818,7 +856,9 @@ module Aws::ElasticLoadBalancingV2
|
|
818
856
|
:scheme,
|
819
857
|
:tags,
|
820
858
|
:type,
|
821
|
-
:ip_address_type
|
859
|
+
:ip_address_type,
|
860
|
+
:customer_owned_ipv_4_pool)
|
861
|
+
SENSITIVE = []
|
822
862
|
include Aws::Structure
|
823
863
|
end
|
824
864
|
|
@@ -830,6 +870,7 @@ module Aws::ElasticLoadBalancingV2
|
|
830
870
|
#
|
831
871
|
class CreateLoadBalancerOutput < Struct.new(
|
832
872
|
:load_balancers)
|
873
|
+
SENSITIVE = []
|
833
874
|
include Aws::Structure
|
834
875
|
end
|
835
876
|
|
@@ -936,9 +977,10 @@ module Aws::ElasticLoadBalancingV2
|
|
936
977
|
# @return [String]
|
937
978
|
#
|
938
979
|
# @!attribute [rw] conditions
|
939
|
-
# The conditions. Each rule can include
|
940
|
-
# conditions: `http-request-method`, `host-header`,
|
941
|
-
# and `source-ip
|
980
|
+
# The conditions. Each rule can optionally include up to one of each
|
981
|
+
# of the following conditions: `http-request-method`, `host-header`,
|
982
|
+
# `path-pattern`, and `source-ip`. Each rule can also optionally
|
983
|
+
# include one or more of each of the following conditions:
|
942
984
|
# `http-header` and `query-string`.
|
943
985
|
# @return [Array<Types::RuleCondition>]
|
944
986
|
#
|
@@ -980,6 +1022,7 @@ module Aws::ElasticLoadBalancingV2
|
|
980
1022
|
:conditions,
|
981
1023
|
:priority,
|
982
1024
|
:actions)
|
1025
|
+
SENSITIVE = []
|
983
1026
|
include Aws::Structure
|
984
1027
|
end
|
985
1028
|
|
@@ -991,6 +1034,7 @@ module Aws::ElasticLoadBalancingV2
|
|
991
1034
|
#
|
992
1035
|
class CreateRuleOutput < Struct.new(
|
993
1036
|
:rules)
|
1037
|
+
SENSITIVE = []
|
994
1038
|
include Aws::Structure
|
995
1039
|
end
|
996
1040
|
|
@@ -1117,8 +1161,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1117
1161
|
# group using more than one target type.
|
1118
1162
|
#
|
1119
1163
|
# * `instance` - Targets are specified by instance ID. This is the
|
1120
|
-
# default value.
|
1121
|
-
# the target type must be `instance`.
|
1164
|
+
# default value.
|
1122
1165
|
#
|
1123
1166
|
# * `ip` - Targets are specified by IP address. You can specify IP
|
1124
1167
|
# addresses from the subnets of the virtual private cloud (VPC) for
|
@@ -1146,6 +1189,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1146
1189
|
:unhealthy_threshold_count,
|
1147
1190
|
:matcher,
|
1148
1191
|
:target_type)
|
1192
|
+
SENSITIVE = []
|
1149
1193
|
include Aws::Structure
|
1150
1194
|
end
|
1151
1195
|
|
@@ -1157,6 +1201,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1157
1201
|
#
|
1158
1202
|
class CreateTargetGroupOutput < Struct.new(
|
1159
1203
|
:target_groups)
|
1204
|
+
SENSITIVE = []
|
1160
1205
|
include Aws::Structure
|
1161
1206
|
end
|
1162
1207
|
|
@@ -1175,6 +1220,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1175
1220
|
#
|
1176
1221
|
class DeleteListenerInput < Struct.new(
|
1177
1222
|
:listener_arn)
|
1223
|
+
SENSITIVE = []
|
1178
1224
|
include Aws::Structure
|
1179
1225
|
end
|
1180
1226
|
|
@@ -1197,6 +1243,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1197
1243
|
#
|
1198
1244
|
class DeleteLoadBalancerInput < Struct.new(
|
1199
1245
|
:load_balancer_arn)
|
1246
|
+
SENSITIVE = []
|
1200
1247
|
include Aws::Structure
|
1201
1248
|
end
|
1202
1249
|
|
@@ -1219,6 +1266,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1219
1266
|
#
|
1220
1267
|
class DeleteRuleInput < Struct.new(
|
1221
1268
|
:rule_arn)
|
1269
|
+
SENSITIVE = []
|
1222
1270
|
include Aws::Structure
|
1223
1271
|
end
|
1224
1272
|
|
@@ -1241,6 +1289,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1241
1289
|
#
|
1242
1290
|
class DeleteTargetGroupInput < Struct.new(
|
1243
1291
|
:target_group_arn)
|
1292
|
+
SENSITIVE = []
|
1244
1293
|
include Aws::Structure
|
1245
1294
|
end
|
1246
1295
|
|
@@ -1277,6 +1326,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1277
1326
|
class DeregisterTargetsInput < Struct.new(
|
1278
1327
|
:target_group_arn,
|
1279
1328
|
:targets)
|
1329
|
+
SENSITIVE = []
|
1280
1330
|
include Aws::Structure
|
1281
1331
|
end
|
1282
1332
|
|
@@ -1306,6 +1356,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1306
1356
|
class DescribeAccountLimitsInput < Struct.new(
|
1307
1357
|
:marker,
|
1308
1358
|
:page_size)
|
1359
|
+
SENSITIVE = []
|
1309
1360
|
include Aws::Structure
|
1310
1361
|
end
|
1311
1362
|
|
@@ -1323,6 +1374,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1323
1374
|
class DescribeAccountLimitsOutput < Struct.new(
|
1324
1375
|
:limits,
|
1325
1376
|
:next_marker)
|
1377
|
+
SENSITIVE = []
|
1326
1378
|
include Aws::Structure
|
1327
1379
|
end
|
1328
1380
|
|
@@ -1354,6 +1406,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1354
1406
|
:listener_arn,
|
1355
1407
|
:marker,
|
1356
1408
|
:page_size)
|
1409
|
+
SENSITIVE = []
|
1357
1410
|
include Aws::Structure
|
1358
1411
|
end
|
1359
1412
|
|
@@ -1371,6 +1424,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1371
1424
|
class DescribeListenerCertificatesOutput < Struct.new(
|
1372
1425
|
:certificates,
|
1373
1426
|
:next_marker)
|
1427
|
+
SENSITIVE = []
|
1374
1428
|
include Aws::Structure
|
1375
1429
|
end
|
1376
1430
|
|
@@ -1408,6 +1462,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1408
1462
|
:listener_arns,
|
1409
1463
|
:marker,
|
1410
1464
|
:page_size)
|
1465
|
+
SENSITIVE = []
|
1411
1466
|
include Aws::Structure
|
1412
1467
|
end
|
1413
1468
|
|
@@ -1425,6 +1480,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1425
1480
|
class DescribeListenersOutput < Struct.new(
|
1426
1481
|
:listeners,
|
1427
1482
|
:next_marker)
|
1483
|
+
SENSITIVE = []
|
1428
1484
|
include Aws::Structure
|
1429
1485
|
end
|
1430
1486
|
|
@@ -1443,6 +1499,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1443
1499
|
#
|
1444
1500
|
class DescribeLoadBalancerAttributesInput < Struct.new(
|
1445
1501
|
:load_balancer_arn)
|
1502
|
+
SENSITIVE = []
|
1446
1503
|
include Aws::Structure
|
1447
1504
|
end
|
1448
1505
|
|
@@ -1454,6 +1511,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1454
1511
|
#
|
1455
1512
|
class DescribeLoadBalancerAttributesOutput < Struct.new(
|
1456
1513
|
:attributes)
|
1514
|
+
SENSITIVE = []
|
1457
1515
|
include Aws::Structure
|
1458
1516
|
end
|
1459
1517
|
|
@@ -1492,6 +1550,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1492
1550
|
:names,
|
1493
1551
|
:marker,
|
1494
1552
|
:page_size)
|
1553
|
+
SENSITIVE = []
|
1495
1554
|
include Aws::Structure
|
1496
1555
|
end
|
1497
1556
|
|
@@ -1509,6 +1568,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1509
1568
|
class DescribeLoadBalancersOutput < Struct.new(
|
1510
1569
|
:load_balancers,
|
1511
1570
|
:next_marker)
|
1571
|
+
SENSITIVE = []
|
1512
1572
|
include Aws::Structure
|
1513
1573
|
end
|
1514
1574
|
|
@@ -1546,6 +1606,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1546
1606
|
:rule_arns,
|
1547
1607
|
:marker,
|
1548
1608
|
:page_size)
|
1609
|
+
SENSITIVE = []
|
1549
1610
|
include Aws::Structure
|
1550
1611
|
end
|
1551
1612
|
|
@@ -1563,6 +1624,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1563
1624
|
class DescribeRulesOutput < Struct.new(
|
1564
1625
|
:rules,
|
1565
1626
|
:next_marker)
|
1627
|
+
SENSITIVE = []
|
1566
1628
|
include Aws::Structure
|
1567
1629
|
end
|
1568
1630
|
|
@@ -1594,6 +1656,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1594
1656
|
:names,
|
1595
1657
|
:marker,
|
1596
1658
|
:page_size)
|
1659
|
+
SENSITIVE = []
|
1597
1660
|
include Aws::Structure
|
1598
1661
|
end
|
1599
1662
|
|
@@ -1611,6 +1674,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1611
1674
|
class DescribeSSLPoliciesOutput < Struct.new(
|
1612
1675
|
:ssl_policies,
|
1613
1676
|
:next_marker)
|
1677
|
+
SENSITIVE = []
|
1614
1678
|
include Aws::Structure
|
1615
1679
|
end
|
1616
1680
|
|
@@ -1630,6 +1694,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1630
1694
|
#
|
1631
1695
|
class DescribeTagsInput < Struct.new(
|
1632
1696
|
:resource_arns)
|
1697
|
+
SENSITIVE = []
|
1633
1698
|
include Aws::Structure
|
1634
1699
|
end
|
1635
1700
|
|
@@ -1641,6 +1706,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1641
1706
|
#
|
1642
1707
|
class DescribeTagsOutput < Struct.new(
|
1643
1708
|
:tag_descriptions)
|
1709
|
+
SENSITIVE = []
|
1644
1710
|
include Aws::Structure
|
1645
1711
|
end
|
1646
1712
|
|
@@ -1659,6 +1725,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1659
1725
|
#
|
1660
1726
|
class DescribeTargetGroupAttributesInput < Struct.new(
|
1661
1727
|
:target_group_arn)
|
1728
|
+
SENSITIVE = []
|
1662
1729
|
include Aws::Structure
|
1663
1730
|
end
|
1664
1731
|
|
@@ -1670,6 +1737,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1670
1737
|
#
|
1671
1738
|
class DescribeTargetGroupAttributesOutput < Struct.new(
|
1672
1739
|
:attributes)
|
1740
|
+
SENSITIVE = []
|
1673
1741
|
include Aws::Structure
|
1674
1742
|
end
|
1675
1743
|
|
@@ -1713,6 +1781,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1713
1781
|
:names,
|
1714
1782
|
:marker,
|
1715
1783
|
:page_size)
|
1784
|
+
SENSITIVE = []
|
1716
1785
|
include Aws::Structure
|
1717
1786
|
end
|
1718
1787
|
|
@@ -1730,6 +1799,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1730
1799
|
class DescribeTargetGroupsOutput < Struct.new(
|
1731
1800
|
:target_groups,
|
1732
1801
|
:next_marker)
|
1802
|
+
SENSITIVE = []
|
1733
1803
|
include Aws::Structure
|
1734
1804
|
end
|
1735
1805
|
|
@@ -1760,6 +1830,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1760
1830
|
class DescribeTargetHealthInput < Struct.new(
|
1761
1831
|
:target_group_arn,
|
1762
1832
|
:targets)
|
1833
|
+
SENSITIVE = []
|
1763
1834
|
include Aws::Structure
|
1764
1835
|
end
|
1765
1836
|
|
@@ -1771,6 +1842,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1771
1842
|
#
|
1772
1843
|
class DescribeTargetHealthOutput < Struct.new(
|
1773
1844
|
:target_health_descriptions)
|
1845
|
+
SENSITIVE = []
|
1774
1846
|
include Aws::Structure
|
1775
1847
|
end
|
1776
1848
|
|
@@ -1830,6 +1902,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1830
1902
|
:message_body,
|
1831
1903
|
:status_code,
|
1832
1904
|
:content_type)
|
1905
|
+
SENSITIVE = []
|
1833
1906
|
include Aws::Structure
|
1834
1907
|
end
|
1835
1908
|
|
@@ -1865,6 +1938,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1865
1938
|
class ForwardActionConfig < Struct.new(
|
1866
1939
|
:target_groups,
|
1867
1940
|
:target_group_stickiness_config)
|
1941
|
+
SENSITIVE = []
|
1868
1942
|
include Aws::Structure
|
1869
1943
|
end
|
1870
1944
|
|
@@ -1898,6 +1972,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1898
1972
|
#
|
1899
1973
|
class HostHeaderConditionConfig < Struct.new(
|
1900
1974
|
:values)
|
1975
|
+
SENSITIVE = []
|
1901
1976
|
include Aws::Structure
|
1902
1977
|
end
|
1903
1978
|
|
@@ -1943,6 +2018,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1943
2018
|
class HttpHeaderConditionConfig < Struct.new(
|
1944
2019
|
:http_header_name,
|
1945
2020
|
:values)
|
2021
|
+
SENSITIVE = []
|
1946
2022
|
include Aws::Structure
|
1947
2023
|
end
|
1948
2024
|
|
@@ -1979,6 +2055,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1979
2055
|
#
|
1980
2056
|
class HttpRequestMethodConditionConfig < Struct.new(
|
1981
2057
|
:values)
|
2058
|
+
SENSITIVE = []
|
1982
2059
|
include Aws::Structure
|
1983
2060
|
end
|
1984
2061
|
|
@@ -2065,6 +2142,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2065
2142
|
class Limit < Struct.new(
|
2066
2143
|
:name,
|
2067
2144
|
:max)
|
2145
|
+
SENSITIVE = []
|
2068
2146
|
include Aws::Structure
|
2069
2147
|
end
|
2070
2148
|
|
@@ -2115,6 +2193,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2115
2193
|
:ssl_policy,
|
2116
2194
|
:default_actions,
|
2117
2195
|
:alpn_policy)
|
2196
|
+
SENSITIVE = []
|
2118
2197
|
include Aws::Structure
|
2119
2198
|
end
|
2120
2199
|
|
@@ -2174,7 +2253,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2174
2253
|
# @return [String]
|
2175
2254
|
#
|
2176
2255
|
# @!attribute [rw] availability_zones
|
2177
|
-
# The
|
2256
|
+
# The subnets for the load balancer.
|
2178
2257
|
# @return [Array<Types::AvailabilityZone>]
|
2179
2258
|
#
|
2180
2259
|
# @!attribute [rw] security_groups
|
@@ -2187,6 +2266,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2187
2266
|
# (for IPv4 and IPv6 addresses).
|
2188
2267
|
# @return [String]
|
2189
2268
|
#
|
2269
|
+
# @!attribute [rw] customer_owned_ipv_4_pool
|
2270
|
+
# \[Application Load Balancers on Outposts\] The ID of the
|
2271
|
+
# customer-owned address pool.
|
2272
|
+
# @return [String]
|
2273
|
+
#
|
2190
2274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/LoadBalancer AWS API Documentation
|
2191
2275
|
#
|
2192
2276
|
class LoadBalancer < Struct.new(
|
@@ -2201,7 +2285,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2201
2285
|
:type,
|
2202
2286
|
:availability_zones,
|
2203
2287
|
:security_groups,
|
2204
|
-
:ip_address_type
|
2288
|
+
:ip_address_type,
|
2289
|
+
:customer_owned_ipv_4_pool)
|
2290
|
+
SENSITIVE = []
|
2205
2291
|
include Aws::Structure
|
2206
2292
|
end
|
2207
2293
|
|
@@ -2227,6 +2313,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2227
2313
|
:ip_address,
|
2228
2314
|
:allocation_id,
|
2229
2315
|
:private_i_pv_4_address)
|
2316
|
+
SENSITIVE = []
|
2230
2317
|
include Aws::Structure
|
2231
2318
|
end
|
2232
2319
|
|
@@ -2269,6 +2356,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2269
2356
|
# seconds. The valid range is 1-4000 seconds. The default is 60
|
2270
2357
|
# seconds.
|
2271
2358
|
#
|
2359
|
+
# * `routing.http.desync_mitigation_mode` - Determines how the load
|
2360
|
+
# balancer handles requests that might pose a security risk to your
|
2361
|
+
# application. The possible values are `monitor`, `defensive`, and
|
2362
|
+
# `strictest`. The default is `defensive`.
|
2363
|
+
#
|
2272
2364
|
# * `routing.http.drop_invalid_header_fields.enabled` - Indicates
|
2273
2365
|
# whether HTTP headers with invalid header fields are removed by the
|
2274
2366
|
# load balancer (`true`) or routed to targets (`false`). The default
|
@@ -2298,6 +2390,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2298
2390
|
class LoadBalancerAttribute < Struct.new(
|
2299
2391
|
:key,
|
2300
2392
|
:value)
|
2393
|
+
SENSITIVE = []
|
2301
2394
|
include Aws::Structure
|
2302
2395
|
end
|
2303
2396
|
|
@@ -2325,6 +2418,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2325
2418
|
class LoadBalancerState < Struct.new(
|
2326
2419
|
:code,
|
2327
2420
|
:reason)
|
2421
|
+
SENSITIVE = []
|
2328
2422
|
include Aws::Structure
|
2329
2423
|
end
|
2330
2424
|
|
@@ -2353,6 +2447,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2353
2447
|
#
|
2354
2448
|
class Matcher < Struct.new(
|
2355
2449
|
:http_code)
|
2450
|
+
SENSITIVE = []
|
2356
2451
|
include Aws::Structure
|
2357
2452
|
end
|
2358
2453
|
|
@@ -2547,6 +2642,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2547
2642
|
:certificates,
|
2548
2643
|
:default_actions,
|
2549
2644
|
:alpn_policy)
|
2645
|
+
SENSITIVE = []
|
2550
2646
|
include Aws::Structure
|
2551
2647
|
end
|
2552
2648
|
|
@@ -2558,6 +2654,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2558
2654
|
#
|
2559
2655
|
class ModifyListenerOutput < Struct.new(
|
2560
2656
|
:listeners)
|
2657
|
+
SENSITIVE = []
|
2561
2658
|
include Aws::Structure
|
2562
2659
|
end
|
2563
2660
|
|
@@ -2587,6 +2684,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2587
2684
|
class ModifyLoadBalancerAttributesInput < Struct.new(
|
2588
2685
|
:load_balancer_arn,
|
2589
2686
|
:attributes)
|
2687
|
+
SENSITIVE = []
|
2590
2688
|
include Aws::Structure
|
2591
2689
|
end
|
2592
2690
|
|
@@ -2598,6 +2696,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2598
2696
|
#
|
2599
2697
|
class ModifyLoadBalancerAttributesOutput < Struct.new(
|
2600
2698
|
:attributes)
|
2699
|
+
SENSITIVE = []
|
2601
2700
|
include Aws::Structure
|
2602
2701
|
end
|
2603
2702
|
|
@@ -2741,6 +2840,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2741
2840
|
:rule_arn,
|
2742
2841
|
:conditions,
|
2743
2842
|
:actions)
|
2843
|
+
SENSITIVE = []
|
2744
2844
|
include Aws::Structure
|
2745
2845
|
end
|
2746
2846
|
|
@@ -2752,6 +2852,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2752
2852
|
#
|
2753
2853
|
class ModifyRuleOutput < Struct.new(
|
2754
2854
|
:rules)
|
2855
|
+
SENSITIVE = []
|
2755
2856
|
include Aws::Structure
|
2756
2857
|
end
|
2757
2858
|
|
@@ -2781,6 +2882,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2781
2882
|
class ModifyTargetGroupAttributesInput < Struct.new(
|
2782
2883
|
:target_group_arn,
|
2783
2884
|
:attributes)
|
2885
|
+
SENSITIVE = []
|
2784
2886
|
include Aws::Structure
|
2785
2887
|
end
|
2786
2888
|
|
@@ -2792,6 +2894,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2792
2894
|
#
|
2793
2895
|
class ModifyTargetGroupAttributesOutput < Struct.new(
|
2794
2896
|
:attributes)
|
2897
|
+
SENSITIVE = []
|
2795
2898
|
include Aws::Structure
|
2796
2899
|
end
|
2797
2900
|
|
@@ -2869,7 +2972,10 @@ module Aws::ElasticLoadBalancingV2
|
|
2869
2972
|
#
|
2870
2973
|
# @!attribute [rw] matcher
|
2871
2974
|
# \[HTTP/HTTPS health checks\] The HTTP codes to use when checking for
|
2872
|
-
# a successful response from a target.
|
2975
|
+
# a successful response from a target. The possible values are from
|
2976
|
+
# 200 to 499. You can specify multiple values (for example,
|
2977
|
+
# "200,202") or a range of values (for example, "200-299"). The
|
2978
|
+
# default is 200.
|
2873
2979
|
#
|
2874
2980
|
# With Network Load Balancers, you can't modify this setting.
|
2875
2981
|
# @return [Types::Matcher]
|
@@ -2887,6 +2993,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2887
2993
|
:healthy_threshold_count,
|
2888
2994
|
:unhealthy_threshold_count,
|
2889
2995
|
:matcher)
|
2996
|
+
SENSITIVE = []
|
2890
2997
|
include Aws::Structure
|
2891
2998
|
end
|
2892
2999
|
|
@@ -2898,6 +3005,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2898
3005
|
#
|
2899
3006
|
class ModifyTargetGroupOutput < Struct.new(
|
2900
3007
|
:target_groups)
|
3008
|
+
SENSITIVE = []
|
2901
3009
|
include Aws::Structure
|
2902
3010
|
end
|
2903
3011
|
|
@@ -2932,6 +3040,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2932
3040
|
#
|
2933
3041
|
class PathPatternConditionConfig < Struct.new(
|
2934
3042
|
:values)
|
3043
|
+
SENSITIVE = []
|
2935
3044
|
include Aws::Structure
|
2936
3045
|
end
|
2937
3046
|
|
@@ -2978,6 +3087,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2978
3087
|
#
|
2979
3088
|
class QueryStringConditionConfig < Struct.new(
|
2980
3089
|
:values)
|
3090
|
+
SENSITIVE = []
|
2981
3091
|
include Aws::Structure
|
2982
3092
|
end
|
2983
3093
|
|
@@ -3004,6 +3114,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3004
3114
|
class QueryStringKeyValuePair < Struct.new(
|
3005
3115
|
:key,
|
3006
3116
|
:value)
|
3117
|
+
SENSITIVE = []
|
3007
3118
|
include Aws::Structure
|
3008
3119
|
end
|
3009
3120
|
|
@@ -3084,6 +3195,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3084
3195
|
:path,
|
3085
3196
|
:query,
|
3086
3197
|
:status_code)
|
3198
|
+
SENSITIVE = []
|
3087
3199
|
include Aws::Structure
|
3088
3200
|
end
|
3089
3201
|
|
@@ -3118,6 +3230,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3118
3230
|
class RegisterTargetsInput < Struct.new(
|
3119
3231
|
:target_group_arn,
|
3120
3232
|
:targets)
|
3233
|
+
SENSITIVE = []
|
3121
3234
|
include Aws::Structure
|
3122
3235
|
end
|
3123
3236
|
|
@@ -3153,6 +3266,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3153
3266
|
class RemoveListenerCertificatesInput < Struct.new(
|
3154
3267
|
:listener_arn,
|
3155
3268
|
:certificates)
|
3269
|
+
SENSITIVE = []
|
3156
3270
|
include Aws::Structure
|
3157
3271
|
end
|
3158
3272
|
|
@@ -3181,6 +3295,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3181
3295
|
class RemoveTagsInput < Struct.new(
|
3182
3296
|
:resource_arns,
|
3183
3297
|
:tag_keys)
|
3298
|
+
SENSITIVE = []
|
3184
3299
|
include Aws::Structure
|
3185
3300
|
end
|
3186
3301
|
|
@@ -3229,11 +3344,17 @@ module Aws::ElasticLoadBalancingV2
|
|
3229
3344
|
:conditions,
|
3230
3345
|
:actions,
|
3231
3346
|
:is_default)
|
3347
|
+
SENSITIVE = []
|
3232
3348
|
include Aws::Structure
|
3233
3349
|
end
|
3234
3350
|
|
3235
3351
|
# Information about a condition for a rule.
|
3236
3352
|
#
|
3353
|
+
# Each rule can optionally include up to one of each of the following
|
3354
|
+
# conditions: `http-request-method`, `host-header`, `path-pattern`, and
|
3355
|
+
# `source-ip`. Each rule can also optionally include one or more of each
|
3356
|
+
# of the following conditions: `http-header` and `query-string`.
|
3357
|
+
#
|
3237
3358
|
# @note When making an API call, you may pass RuleCondition
|
3238
3359
|
# data as a hash:
|
3239
3360
|
#
|
@@ -3284,14 +3405,15 @@ module Aws::ElasticLoadBalancingV2
|
|
3284
3405
|
# @return [String]
|
3285
3406
|
#
|
3286
3407
|
# @!attribute [rw] values
|
3287
|
-
# The condition value.
|
3288
|
-
# `
|
3289
|
-
#
|
3290
|
-
# `PathPatternConfig
|
3291
|
-
#
|
3292
|
-
# If `Field` is `host-header
|
3293
|
-
#
|
3294
|
-
#
|
3408
|
+
# The condition value. Specify only when `Field` is `host-header` or
|
3409
|
+
# `path-pattern`. Alternatively, to specify multiple host names or
|
3410
|
+
# multiple path patterns, use `HostHeaderConfig` or
|
3411
|
+
# `PathPatternConfig`.
|
3412
|
+
#
|
3413
|
+
# If `Field` is `host-header` and you are not using
|
3414
|
+
# `HostHeaderConfig`, you can specify a single host name (for example,
|
3415
|
+
# my.example.com) in `Values`. A host name is case insensitive, can be
|
3416
|
+
# up to 128 characters in length, and can contain any of the following
|
3295
3417
|
# characters.
|
3296
3418
|
#
|
3297
3419
|
# * A-Z, a-z, 0-9
|
@@ -3302,10 +3424,11 @@ module Aws::ElasticLoadBalancingV2
|
|
3302
3424
|
#
|
3303
3425
|
# * ? (matches exactly 1 character)
|
3304
3426
|
#
|
3305
|
-
# If `Field` is `path-pattern
|
3306
|
-
#
|
3307
|
-
#
|
3308
|
-
# characters
|
3427
|
+
# If `Field` is `path-pattern` and you are not using
|
3428
|
+
# `PathPatternConfig`, you can specify a single path pattern (for
|
3429
|
+
# example, /img/*) in `Values`. A path pattern is case-sensitive, can
|
3430
|
+
# be up to 128 characters in length, and can contain any of the
|
3431
|
+
# following characters.
|
3309
3432
|
#
|
3310
3433
|
# * A-Z, a-z, 0-9
|
3311
3434
|
#
|
@@ -3359,6 +3482,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3359
3482
|
:query_string_config,
|
3360
3483
|
:http_request_method_config,
|
3361
3484
|
:source_ip_config)
|
3485
|
+
SENSITIVE = []
|
3362
3486
|
include Aws::Structure
|
3363
3487
|
end
|
3364
3488
|
|
@@ -3391,6 +3515,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3391
3515
|
class RulePriorityPair < Struct.new(
|
3392
3516
|
:rule_arn,
|
3393
3517
|
:priority)
|
3518
|
+
SENSITIVE = []
|
3394
3519
|
include Aws::Structure
|
3395
3520
|
end
|
3396
3521
|
|
@@ -3424,6 +3549,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3424
3549
|
class SetIpAddressTypeInput < Struct.new(
|
3425
3550
|
:load_balancer_arn,
|
3426
3551
|
:ip_address_type)
|
3552
|
+
SENSITIVE = []
|
3427
3553
|
include Aws::Structure
|
3428
3554
|
end
|
3429
3555
|
|
@@ -3435,6 +3561,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3435
3561
|
#
|
3436
3562
|
class SetIpAddressTypeOutput < Struct.new(
|
3437
3563
|
:ip_address_type)
|
3564
|
+
SENSITIVE = []
|
3438
3565
|
include Aws::Structure
|
3439
3566
|
end
|
3440
3567
|
|
@@ -3458,6 +3585,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3458
3585
|
#
|
3459
3586
|
class SetRulePrioritiesInput < Struct.new(
|
3460
3587
|
:rule_priorities)
|
3588
|
+
SENSITIVE = []
|
3461
3589
|
include Aws::Structure
|
3462
3590
|
end
|
3463
3591
|
|
@@ -3469,6 +3597,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3469
3597
|
#
|
3470
3598
|
class SetRulePrioritiesOutput < Struct.new(
|
3471
3599
|
:rules)
|
3600
|
+
SENSITIVE = []
|
3472
3601
|
include Aws::Structure
|
3473
3602
|
end
|
3474
3603
|
|
@@ -3493,6 +3622,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3493
3622
|
class SetSecurityGroupsInput < Struct.new(
|
3494
3623
|
:load_balancer_arn,
|
3495
3624
|
:security_groups)
|
3625
|
+
SENSITIVE = []
|
3496
3626
|
include Aws::Structure
|
3497
3627
|
end
|
3498
3628
|
|
@@ -3504,6 +3634,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3504
3634
|
#
|
3505
3635
|
class SetSecurityGroupsOutput < Struct.new(
|
3506
3636
|
:security_group_ids)
|
3637
|
+
SENSITIVE = []
|
3507
3638
|
include Aws::Structure
|
3508
3639
|
end
|
3509
3640
|
|
@@ -3555,17 +3686,19 @@ module Aws::ElasticLoadBalancingV2
|
|
3555
3686
|
:load_balancer_arn,
|
3556
3687
|
:subnets,
|
3557
3688
|
:subnet_mappings)
|
3689
|
+
SENSITIVE = []
|
3558
3690
|
include Aws::Structure
|
3559
3691
|
end
|
3560
3692
|
|
3561
3693
|
# @!attribute [rw] availability_zones
|
3562
|
-
# Information about the
|
3694
|
+
# Information about the subnets.
|
3563
3695
|
# @return [Array<Types::AvailabilityZone>]
|
3564
3696
|
#
|
3565
3697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnetsOutput AWS API Documentation
|
3566
3698
|
#
|
3567
3699
|
class SetSubnetsOutput < Struct.new(
|
3568
3700
|
:availability_zones)
|
3701
|
+
SENSITIVE = []
|
3569
3702
|
include Aws::Structure
|
3570
3703
|
end
|
3571
3704
|
|
@@ -3598,6 +3731,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3598
3731
|
#
|
3599
3732
|
class SourceIpConditionConfig < Struct.new(
|
3600
3733
|
:values)
|
3734
|
+
SENSITIVE = []
|
3601
3735
|
include Aws::Structure
|
3602
3736
|
end
|
3603
3737
|
|
@@ -3621,6 +3755,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3621
3755
|
:ssl_protocols,
|
3622
3756
|
:ciphers,
|
3623
3757
|
:name)
|
3758
|
+
SENSITIVE = []
|
3624
3759
|
include Aws::Structure
|
3625
3760
|
end
|
3626
3761
|
|
@@ -3655,6 +3790,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3655
3790
|
:subnet_id,
|
3656
3791
|
:allocation_id,
|
3657
3792
|
:private_i_pv_4_address)
|
3793
|
+
SENSITIVE = []
|
3658
3794
|
include Aws::Structure
|
3659
3795
|
end
|
3660
3796
|
|
@@ -3687,6 +3823,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3687
3823
|
class Tag < Struct.new(
|
3688
3824
|
:key,
|
3689
3825
|
:value)
|
3826
|
+
SENSITIVE = []
|
3690
3827
|
include Aws::Structure
|
3691
3828
|
end
|
3692
3829
|
|
@@ -3705,6 +3842,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3705
3842
|
class TagDescription < Struct.new(
|
3706
3843
|
:resource_arn,
|
3707
3844
|
:tags)
|
3845
|
+
SENSITIVE = []
|
3708
3846
|
include Aws::Structure
|
3709
3847
|
end
|
3710
3848
|
|
@@ -3759,6 +3897,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3759
3897
|
:id,
|
3760
3898
|
:port,
|
3761
3899
|
:availability_zone)
|
3900
|
+
SENSITIVE = []
|
3762
3901
|
include Aws::Structure
|
3763
3902
|
end
|
3764
3903
|
|
@@ -3857,6 +3996,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3857
3996
|
:matcher,
|
3858
3997
|
:load_balancer_arns,
|
3859
3998
|
:target_type)
|
3999
|
+
SENSITIVE = []
|
3860
4000
|
include Aws::Structure
|
3861
4001
|
end
|
3862
4002
|
|
@@ -3909,8 +4049,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3909
4049
|
# during which a newly registered target receives an increasing
|
3910
4050
|
# share of the traffic to the target group. After this time period
|
3911
4051
|
# ends, the target receives its full share of traffic. The range is
|
3912
|
-
# 30-900 seconds (15 minutes).
|
3913
|
-
# default.
|
4052
|
+
# 30-900 seconds (15 minutes). The default is 0 seconds (disabled).
|
3914
4053
|
#
|
3915
4054
|
# * `stickiness.lb_cookie.duration_seconds` - The time period, in
|
3916
4055
|
# seconds, during which requests from a client should be routed to
|
@@ -3950,6 +4089,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3950
4089
|
class TargetGroupAttribute < Struct.new(
|
3951
4090
|
:key,
|
3952
4091
|
:value)
|
4092
|
+
SENSITIVE = []
|
3953
4093
|
include Aws::Structure
|
3954
4094
|
end
|
3955
4095
|
|
@@ -3984,6 +4124,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3984
4124
|
class TargetGroupStickinessConfig < Struct.new(
|
3985
4125
|
:enabled,
|
3986
4126
|
:duration_seconds)
|
4127
|
+
SENSITIVE = []
|
3987
4128
|
include Aws::Structure
|
3988
4129
|
end
|
3989
4130
|
|
@@ -4011,6 +4152,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4011
4152
|
class TargetGroupTuple < Struct.new(
|
4012
4153
|
:target_group_arn,
|
4013
4154
|
:weight)
|
4155
|
+
SENSITIVE = []
|
4014
4156
|
include Aws::Structure
|
4015
4157
|
end
|
4016
4158
|
|
@@ -4097,6 +4239,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4097
4239
|
:state,
|
4098
4240
|
:reason,
|
4099
4241
|
:description)
|
4242
|
+
SENSITIVE = []
|
4100
4243
|
include Aws::Structure
|
4101
4244
|
end
|
4102
4245
|
|
@@ -4120,6 +4263,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4120
4263
|
:target,
|
4121
4264
|
:health_check_port,
|
4122
4265
|
:target_health)
|
4266
|
+
SENSITIVE = []
|
4123
4267
|
include Aws::Structure
|
4124
4268
|
end
|
4125
4269
|
|
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.
|
4
|
+
version: 1.50.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: 2020-
|
11
|
+
date: 2020-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|