aws-sdk-elasticloadbalancingv2 1.44.0 → 1.49.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: c47e7a5fbc71e871b36d686fed1978296cef982295dafd79b42f7943fef39212
4
- data.tar.gz: bb8febe75bb0ae37186acf1cd57abe5df5a3d63d46a7adc40f32f0b1eb7615d1
3
+ metadata.gz: 63471e765b6275c7ee3c54fb3352b8fa33fee1310b4740aee33685ca32ed5937
4
+ data.tar.gz: f62d05bb5644b33f5255c415795629564fe4b51ddd7b590e845b0284a195b7a3
5
5
  SHA512:
6
- metadata.gz: 43ef642bec2fe9dbdf62b57996cc3ad52703f3514a9212f84e3ce37271821d372bc1298dfffee79d30a221f2f1a11d30d5830c439fae868ac4bb2b73f9dc41a4
7
- data.tar.gz: e70bed54f87b1e9059a3fbd1af6afa49094d40bfe4fc5294360263470dbe0f8aa2bbb9050e37cd6f1651ef7f4e4cd960bcfccf456e2c2426df8153fdb5a30f57
6
+ metadata.gz: 759f313b5f49de3e7fb885fad2db28c7031601b2e52b559f3391cc05c9c4a2780afdeceff1e4f9ec9afc360248a43d1a741affcd81f55bce0a27dd94c5fcf16b
7
+ data.tar.gz: 5e6e10b1a9b8b6da8b0cc16470464c97397ca907d818edbaba8b68aa31e10d1e507b71775489ca914e11c0d01a123bc3bb327c468274e9c2fefac2fed124dc81
@@ -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
- # @service
48
+ # @!group service
47
49
  module Aws::ElasticLoadBalancingV2
48
50
 
49
- GEM_VERSION = '1.44.0'
51
+ GEM_VERSION = '1.49.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:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/query.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::ElasticLoadBalancingV2
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::Query)
74
78
 
@@ -81,13 +85,28 @@ module Aws::ElasticLoadBalancingV2
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
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
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::ElasticLoadBalancingV2
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # 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.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::ElasticLoadBalancingV2
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -1020,11 +1039,12 @@ module Aws::ElasticLoadBalancingV2
1020
1039
  # Creates a rule for the specified listener. The listener must be
1021
1040
  # associated with an Application Load Balancer.
1022
1041
  #
1023
- # Rules are evaluated in priority order, from the lowest value to the
1024
- # highest value. When the conditions for a rule are met, its actions are
1025
- # performed. If the conditions for no rules are met, the actions for the
1026
- # default rule are performed. For more information, see [Listener
1027
- # Rules][1] in the *Application Load Balancers Guide*.
1042
+ # Each rule consists of a priority, one or more actions, and one or more
1043
+ # conditions. Rules are evaluated in priority order, from the lowest
1044
+ # value to the highest value. When the conditions for a rule are met,
1045
+ # its actions are performed. If the conditions for no rules are met, the
1046
+ # actions for the default rule are performed. For more information, see
1047
+ # [Listener Rules][1] in the *Application Load Balancers Guide*.
1028
1048
  #
1029
1049
  # To view your current rules, use DescribeRules. To update a rule, use
1030
1050
  # ModifyRule. To set the priorities of your rules, use
@@ -1038,10 +1058,11 @@ module Aws::ElasticLoadBalancingV2
1038
1058
  # The Amazon Resource Name (ARN) of the listener.
1039
1059
  #
1040
1060
  # @option params [required, Array<Types::RuleCondition>] :conditions
1041
- # The conditions. Each rule can include zero or one of the following
1042
- # conditions: `http-request-method`, `host-header`, `path-pattern`, and
1043
- # `source-ip`, and zero or more of the following conditions:
1044
- # `http-header` and `query-string`.
1061
+ # The conditions. Each rule can optionally include up to one of each of
1062
+ # the following conditions: `http-request-method`, `host-header`,
1063
+ # `path-pattern`, and `source-ip`. Each rule can also optionally include
1064
+ # one or more of each of the following conditions: `http-header` and
1065
+ # `query-string`.
1045
1066
  #
1046
1067
  # @option params [required, Integer] :priority
1047
1068
  # The rule priority. A listener can't have multiple rules with the same
@@ -1408,8 +1429,7 @@ module Aws::ElasticLoadBalancingV2
1408
1429
  # more than one target type.
1409
1430
  #
1410
1431
  # * `instance` - Targets are specified by instance ID. This is the
1411
- # default value. If the target group protocol is UDP or TCP\_UDP, the
1412
- # target type must be `instance`.
1432
+ # default value.
1413
1433
  #
1414
1434
  # * `ip` - Targets are specified by IP address. You can specify IP
1415
1435
  # addresses from the subnets of the virtual private cloud (VPC) for
@@ -1587,6 +1607,8 @@ module Aws::ElasticLoadBalancingV2
1587
1607
 
1588
1608
  # Deletes the specified rule.
1589
1609
  #
1610
+ # You can't delete the default rule.
1611
+ #
1590
1612
  # @option params [required, String] :rule_arn
1591
1613
  # The Amazon Resource Name (ARN) of the rule.
1592
1614
  #
@@ -3591,7 +3613,9 @@ module Aws::ElasticLoadBalancingV2
3591
3613
  #
3592
3614
  # @option params [Types::Matcher] :matcher
3593
3615
  # \[HTTP/HTTPS health checks\] The HTTP codes to use when checking for a
3594
- # successful response from a target.
3616
+ # successful response from a target. The possible values are from 200 to
3617
+ # 499. You can specify multiple values (for example, "200,202") or a
3618
+ # range of values (for example, "200-299"). The default is 200.
3595
3619
  #
3596
3620
  # With Network Load Balancers, you can't modify this setting.
3597
3621
  #
@@ -4267,7 +4291,7 @@ module Aws::ElasticLoadBalancingV2
4267
4291
  params: params,
4268
4292
  config: config)
4269
4293
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4270
- context[:gem_version] = '1.44.0'
4294
+ context[:gem_version] = '1.49.0'
4271
4295
  Seahorse::Client::Request.new(handlers, context)
4272
4296
  end
4273
4297
 
@@ -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:
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -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:
@@ -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:
@@ -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. The last action to be performed must be one of the
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
 
@@ -442,6 +452,7 @@ module Aws::ElasticLoadBalancingV2
442
452
  :zone_name,
443
453
  :subnet_id,
444
454
  :load_balancer_addresses)
455
+ SENSITIVE = []
445
456
  include Aws::Structure
446
457
  end
447
458
 
@@ -477,6 +488,7 @@ module Aws::ElasticLoadBalancingV2
477
488
  class Certificate < Struct.new(
478
489
  :certificate_arn,
479
490
  :is_default)
491
+ SENSITIVE = []
480
492
  include Aws::Structure
481
493
  end
482
494
 
@@ -501,6 +513,7 @@ module Aws::ElasticLoadBalancingV2
501
513
  class Cipher < Struct.new(
502
514
  :name,
503
515
  :priority)
516
+ SENSITIVE = []
504
517
  include Aws::Structure
505
518
  end
506
519
 
@@ -696,6 +709,7 @@ module Aws::ElasticLoadBalancingV2
696
709
  :certificates,
697
710
  :default_actions,
698
711
  :alpn_policy)
712
+ SENSITIVE = []
699
713
  include Aws::Structure
700
714
  end
701
715
 
@@ -707,6 +721,7 @@ module Aws::ElasticLoadBalancingV2
707
721
  #
708
722
  class CreateListenerOutput < Struct.new(
709
723
  :listeners)
724
+ SENSITIVE = []
710
725
  include Aws::Structure
711
726
  end
712
727
 
@@ -819,6 +834,7 @@ module Aws::ElasticLoadBalancingV2
819
834
  :tags,
820
835
  :type,
821
836
  :ip_address_type)
837
+ SENSITIVE = []
822
838
  include Aws::Structure
823
839
  end
824
840
 
@@ -830,6 +846,7 @@ module Aws::ElasticLoadBalancingV2
830
846
  #
831
847
  class CreateLoadBalancerOutput < Struct.new(
832
848
  :load_balancers)
849
+ SENSITIVE = []
833
850
  include Aws::Structure
834
851
  end
835
852
 
@@ -936,9 +953,10 @@ module Aws::ElasticLoadBalancingV2
936
953
  # @return [String]
937
954
  #
938
955
  # @!attribute [rw] conditions
939
- # The conditions. Each rule can include zero or one of the following
940
- # conditions: `http-request-method`, `host-header`, `path-pattern`,
941
- # and `source-ip`, and zero or more of the following conditions:
956
+ # The conditions. Each rule can optionally include up to one of each
957
+ # of the following conditions: `http-request-method`, `host-header`,
958
+ # `path-pattern`, and `source-ip`. Each rule can also optionally
959
+ # include one or more of each of the following conditions:
942
960
  # `http-header` and `query-string`.
943
961
  # @return [Array<Types::RuleCondition>]
944
962
  #
@@ -980,6 +998,7 @@ module Aws::ElasticLoadBalancingV2
980
998
  :conditions,
981
999
  :priority,
982
1000
  :actions)
1001
+ SENSITIVE = []
983
1002
  include Aws::Structure
984
1003
  end
985
1004
 
@@ -991,6 +1010,7 @@ module Aws::ElasticLoadBalancingV2
991
1010
  #
992
1011
  class CreateRuleOutput < Struct.new(
993
1012
  :rules)
1013
+ SENSITIVE = []
994
1014
  include Aws::Structure
995
1015
  end
996
1016
 
@@ -1117,8 +1137,7 @@ module Aws::ElasticLoadBalancingV2
1117
1137
  # group using more than one target type.
1118
1138
  #
1119
1139
  # * `instance` - Targets are specified by instance ID. This is the
1120
- # default value. If the target group protocol is UDP or TCP\_UDP,
1121
- # the target type must be `instance`.
1140
+ # default value.
1122
1141
  #
1123
1142
  # * `ip` - Targets are specified by IP address. You can specify IP
1124
1143
  # addresses from the subnets of the virtual private cloud (VPC) for
@@ -1146,6 +1165,7 @@ module Aws::ElasticLoadBalancingV2
1146
1165
  :unhealthy_threshold_count,
1147
1166
  :matcher,
1148
1167
  :target_type)
1168
+ SENSITIVE = []
1149
1169
  include Aws::Structure
1150
1170
  end
1151
1171
 
@@ -1157,6 +1177,7 @@ module Aws::ElasticLoadBalancingV2
1157
1177
  #
1158
1178
  class CreateTargetGroupOutput < Struct.new(
1159
1179
  :target_groups)
1180
+ SENSITIVE = []
1160
1181
  include Aws::Structure
1161
1182
  end
1162
1183
 
@@ -1175,6 +1196,7 @@ module Aws::ElasticLoadBalancingV2
1175
1196
  #
1176
1197
  class DeleteListenerInput < Struct.new(
1177
1198
  :listener_arn)
1199
+ SENSITIVE = []
1178
1200
  include Aws::Structure
1179
1201
  end
1180
1202
 
@@ -1197,6 +1219,7 @@ module Aws::ElasticLoadBalancingV2
1197
1219
  #
1198
1220
  class DeleteLoadBalancerInput < Struct.new(
1199
1221
  :load_balancer_arn)
1222
+ SENSITIVE = []
1200
1223
  include Aws::Structure
1201
1224
  end
1202
1225
 
@@ -1219,6 +1242,7 @@ module Aws::ElasticLoadBalancingV2
1219
1242
  #
1220
1243
  class DeleteRuleInput < Struct.new(
1221
1244
  :rule_arn)
1245
+ SENSITIVE = []
1222
1246
  include Aws::Structure
1223
1247
  end
1224
1248
 
@@ -1241,6 +1265,7 @@ module Aws::ElasticLoadBalancingV2
1241
1265
  #
1242
1266
  class DeleteTargetGroupInput < Struct.new(
1243
1267
  :target_group_arn)
1268
+ SENSITIVE = []
1244
1269
  include Aws::Structure
1245
1270
  end
1246
1271
 
@@ -1277,6 +1302,7 @@ module Aws::ElasticLoadBalancingV2
1277
1302
  class DeregisterTargetsInput < Struct.new(
1278
1303
  :target_group_arn,
1279
1304
  :targets)
1305
+ SENSITIVE = []
1280
1306
  include Aws::Structure
1281
1307
  end
1282
1308
 
@@ -1306,6 +1332,7 @@ module Aws::ElasticLoadBalancingV2
1306
1332
  class DescribeAccountLimitsInput < Struct.new(
1307
1333
  :marker,
1308
1334
  :page_size)
1335
+ SENSITIVE = []
1309
1336
  include Aws::Structure
1310
1337
  end
1311
1338
 
@@ -1323,6 +1350,7 @@ module Aws::ElasticLoadBalancingV2
1323
1350
  class DescribeAccountLimitsOutput < Struct.new(
1324
1351
  :limits,
1325
1352
  :next_marker)
1353
+ SENSITIVE = []
1326
1354
  include Aws::Structure
1327
1355
  end
1328
1356
 
@@ -1354,6 +1382,7 @@ module Aws::ElasticLoadBalancingV2
1354
1382
  :listener_arn,
1355
1383
  :marker,
1356
1384
  :page_size)
1385
+ SENSITIVE = []
1357
1386
  include Aws::Structure
1358
1387
  end
1359
1388
 
@@ -1371,6 +1400,7 @@ module Aws::ElasticLoadBalancingV2
1371
1400
  class DescribeListenerCertificatesOutput < Struct.new(
1372
1401
  :certificates,
1373
1402
  :next_marker)
1403
+ SENSITIVE = []
1374
1404
  include Aws::Structure
1375
1405
  end
1376
1406
 
@@ -1408,6 +1438,7 @@ module Aws::ElasticLoadBalancingV2
1408
1438
  :listener_arns,
1409
1439
  :marker,
1410
1440
  :page_size)
1441
+ SENSITIVE = []
1411
1442
  include Aws::Structure
1412
1443
  end
1413
1444
 
@@ -1425,6 +1456,7 @@ module Aws::ElasticLoadBalancingV2
1425
1456
  class DescribeListenersOutput < Struct.new(
1426
1457
  :listeners,
1427
1458
  :next_marker)
1459
+ SENSITIVE = []
1428
1460
  include Aws::Structure
1429
1461
  end
1430
1462
 
@@ -1443,6 +1475,7 @@ module Aws::ElasticLoadBalancingV2
1443
1475
  #
1444
1476
  class DescribeLoadBalancerAttributesInput < Struct.new(
1445
1477
  :load_balancer_arn)
1478
+ SENSITIVE = []
1446
1479
  include Aws::Structure
1447
1480
  end
1448
1481
 
@@ -1454,6 +1487,7 @@ module Aws::ElasticLoadBalancingV2
1454
1487
  #
1455
1488
  class DescribeLoadBalancerAttributesOutput < Struct.new(
1456
1489
  :attributes)
1490
+ SENSITIVE = []
1457
1491
  include Aws::Structure
1458
1492
  end
1459
1493
 
@@ -1492,6 +1526,7 @@ module Aws::ElasticLoadBalancingV2
1492
1526
  :names,
1493
1527
  :marker,
1494
1528
  :page_size)
1529
+ SENSITIVE = []
1495
1530
  include Aws::Structure
1496
1531
  end
1497
1532
 
@@ -1509,6 +1544,7 @@ module Aws::ElasticLoadBalancingV2
1509
1544
  class DescribeLoadBalancersOutput < Struct.new(
1510
1545
  :load_balancers,
1511
1546
  :next_marker)
1547
+ SENSITIVE = []
1512
1548
  include Aws::Structure
1513
1549
  end
1514
1550
 
@@ -1546,6 +1582,7 @@ module Aws::ElasticLoadBalancingV2
1546
1582
  :rule_arns,
1547
1583
  :marker,
1548
1584
  :page_size)
1585
+ SENSITIVE = []
1549
1586
  include Aws::Structure
1550
1587
  end
1551
1588
 
@@ -1563,6 +1600,7 @@ module Aws::ElasticLoadBalancingV2
1563
1600
  class DescribeRulesOutput < Struct.new(
1564
1601
  :rules,
1565
1602
  :next_marker)
1603
+ SENSITIVE = []
1566
1604
  include Aws::Structure
1567
1605
  end
1568
1606
 
@@ -1594,6 +1632,7 @@ module Aws::ElasticLoadBalancingV2
1594
1632
  :names,
1595
1633
  :marker,
1596
1634
  :page_size)
1635
+ SENSITIVE = []
1597
1636
  include Aws::Structure
1598
1637
  end
1599
1638
 
@@ -1611,6 +1650,7 @@ module Aws::ElasticLoadBalancingV2
1611
1650
  class DescribeSSLPoliciesOutput < Struct.new(
1612
1651
  :ssl_policies,
1613
1652
  :next_marker)
1653
+ SENSITIVE = []
1614
1654
  include Aws::Structure
1615
1655
  end
1616
1656
 
@@ -1630,6 +1670,7 @@ module Aws::ElasticLoadBalancingV2
1630
1670
  #
1631
1671
  class DescribeTagsInput < Struct.new(
1632
1672
  :resource_arns)
1673
+ SENSITIVE = []
1633
1674
  include Aws::Structure
1634
1675
  end
1635
1676
 
@@ -1641,6 +1682,7 @@ module Aws::ElasticLoadBalancingV2
1641
1682
  #
1642
1683
  class DescribeTagsOutput < Struct.new(
1643
1684
  :tag_descriptions)
1685
+ SENSITIVE = []
1644
1686
  include Aws::Structure
1645
1687
  end
1646
1688
 
@@ -1659,6 +1701,7 @@ module Aws::ElasticLoadBalancingV2
1659
1701
  #
1660
1702
  class DescribeTargetGroupAttributesInput < Struct.new(
1661
1703
  :target_group_arn)
1704
+ SENSITIVE = []
1662
1705
  include Aws::Structure
1663
1706
  end
1664
1707
 
@@ -1670,6 +1713,7 @@ module Aws::ElasticLoadBalancingV2
1670
1713
  #
1671
1714
  class DescribeTargetGroupAttributesOutput < Struct.new(
1672
1715
  :attributes)
1716
+ SENSITIVE = []
1673
1717
  include Aws::Structure
1674
1718
  end
1675
1719
 
@@ -1713,6 +1757,7 @@ module Aws::ElasticLoadBalancingV2
1713
1757
  :names,
1714
1758
  :marker,
1715
1759
  :page_size)
1760
+ SENSITIVE = []
1716
1761
  include Aws::Structure
1717
1762
  end
1718
1763
 
@@ -1730,6 +1775,7 @@ module Aws::ElasticLoadBalancingV2
1730
1775
  class DescribeTargetGroupsOutput < Struct.new(
1731
1776
  :target_groups,
1732
1777
  :next_marker)
1778
+ SENSITIVE = []
1733
1779
  include Aws::Structure
1734
1780
  end
1735
1781
 
@@ -1760,6 +1806,7 @@ module Aws::ElasticLoadBalancingV2
1760
1806
  class DescribeTargetHealthInput < Struct.new(
1761
1807
  :target_group_arn,
1762
1808
  :targets)
1809
+ SENSITIVE = []
1763
1810
  include Aws::Structure
1764
1811
  end
1765
1812
 
@@ -1771,6 +1818,7 @@ module Aws::ElasticLoadBalancingV2
1771
1818
  #
1772
1819
  class DescribeTargetHealthOutput < Struct.new(
1773
1820
  :target_health_descriptions)
1821
+ SENSITIVE = []
1774
1822
  include Aws::Structure
1775
1823
  end
1776
1824
 
@@ -1830,6 +1878,7 @@ module Aws::ElasticLoadBalancingV2
1830
1878
  :message_body,
1831
1879
  :status_code,
1832
1880
  :content_type)
1881
+ SENSITIVE = []
1833
1882
  include Aws::Structure
1834
1883
  end
1835
1884
 
@@ -1865,6 +1914,7 @@ module Aws::ElasticLoadBalancingV2
1865
1914
  class ForwardActionConfig < Struct.new(
1866
1915
  :target_groups,
1867
1916
  :target_group_stickiness_config)
1917
+ SENSITIVE = []
1868
1918
  include Aws::Structure
1869
1919
  end
1870
1920
 
@@ -1898,6 +1948,7 @@ module Aws::ElasticLoadBalancingV2
1898
1948
  #
1899
1949
  class HostHeaderConditionConfig < Struct.new(
1900
1950
  :values)
1951
+ SENSITIVE = []
1901
1952
  include Aws::Structure
1902
1953
  end
1903
1954
 
@@ -1943,6 +1994,7 @@ module Aws::ElasticLoadBalancingV2
1943
1994
  class HttpHeaderConditionConfig < Struct.new(
1944
1995
  :http_header_name,
1945
1996
  :values)
1997
+ SENSITIVE = []
1946
1998
  include Aws::Structure
1947
1999
  end
1948
2000
 
@@ -1979,6 +2031,7 @@ module Aws::ElasticLoadBalancingV2
1979
2031
  #
1980
2032
  class HttpRequestMethodConditionConfig < Struct.new(
1981
2033
  :values)
2034
+ SENSITIVE = []
1982
2035
  include Aws::Structure
1983
2036
  end
1984
2037
 
@@ -2065,6 +2118,7 @@ module Aws::ElasticLoadBalancingV2
2065
2118
  class Limit < Struct.new(
2066
2119
  :name,
2067
2120
  :max)
2121
+ SENSITIVE = []
2068
2122
  include Aws::Structure
2069
2123
  end
2070
2124
 
@@ -2115,6 +2169,7 @@ module Aws::ElasticLoadBalancingV2
2115
2169
  :ssl_policy,
2116
2170
  :default_actions,
2117
2171
  :alpn_policy)
2172
+ SENSITIVE = []
2118
2173
  include Aws::Structure
2119
2174
  end
2120
2175
 
@@ -2202,6 +2257,7 @@ module Aws::ElasticLoadBalancingV2
2202
2257
  :availability_zones,
2203
2258
  :security_groups,
2204
2259
  :ip_address_type)
2260
+ SENSITIVE = []
2205
2261
  include Aws::Structure
2206
2262
  end
2207
2263
 
@@ -2227,6 +2283,7 @@ module Aws::ElasticLoadBalancingV2
2227
2283
  :ip_address,
2228
2284
  :allocation_id,
2229
2285
  :private_i_pv_4_address)
2286
+ SENSITIVE = []
2230
2287
  include Aws::Structure
2231
2288
  end
2232
2289
 
@@ -2269,6 +2326,11 @@ module Aws::ElasticLoadBalancingV2
2269
2326
  # seconds. The valid range is 1-4000 seconds. The default is 60
2270
2327
  # seconds.
2271
2328
  #
2329
+ # * `routing.http.desync_mitigation_mode` - Determines how the load
2330
+ # balancer handles requests that might pose a security risk to your
2331
+ # application. The possible values are `monitor`, `defensive`, and
2332
+ # `strictest`. The default is `defensive`.
2333
+ #
2272
2334
  # * `routing.http.drop_invalid_header_fields.enabled` - Indicates
2273
2335
  # whether HTTP headers with invalid header fields are removed by the
2274
2336
  # load balancer (`true`) or routed to targets (`false`). The default
@@ -2298,6 +2360,7 @@ module Aws::ElasticLoadBalancingV2
2298
2360
  class LoadBalancerAttribute < Struct.new(
2299
2361
  :key,
2300
2362
  :value)
2363
+ SENSITIVE = []
2301
2364
  include Aws::Structure
2302
2365
  end
2303
2366
 
@@ -2325,6 +2388,7 @@ module Aws::ElasticLoadBalancingV2
2325
2388
  class LoadBalancerState < Struct.new(
2326
2389
  :code,
2327
2390
  :reason)
2391
+ SENSITIVE = []
2328
2392
  include Aws::Structure
2329
2393
  end
2330
2394
 
@@ -2353,6 +2417,7 @@ module Aws::ElasticLoadBalancingV2
2353
2417
  #
2354
2418
  class Matcher < Struct.new(
2355
2419
  :http_code)
2420
+ SENSITIVE = []
2356
2421
  include Aws::Structure
2357
2422
  end
2358
2423
 
@@ -2547,6 +2612,7 @@ module Aws::ElasticLoadBalancingV2
2547
2612
  :certificates,
2548
2613
  :default_actions,
2549
2614
  :alpn_policy)
2615
+ SENSITIVE = []
2550
2616
  include Aws::Structure
2551
2617
  end
2552
2618
 
@@ -2558,6 +2624,7 @@ module Aws::ElasticLoadBalancingV2
2558
2624
  #
2559
2625
  class ModifyListenerOutput < Struct.new(
2560
2626
  :listeners)
2627
+ SENSITIVE = []
2561
2628
  include Aws::Structure
2562
2629
  end
2563
2630
 
@@ -2587,6 +2654,7 @@ module Aws::ElasticLoadBalancingV2
2587
2654
  class ModifyLoadBalancerAttributesInput < Struct.new(
2588
2655
  :load_balancer_arn,
2589
2656
  :attributes)
2657
+ SENSITIVE = []
2590
2658
  include Aws::Structure
2591
2659
  end
2592
2660
 
@@ -2598,6 +2666,7 @@ module Aws::ElasticLoadBalancingV2
2598
2666
  #
2599
2667
  class ModifyLoadBalancerAttributesOutput < Struct.new(
2600
2668
  :attributes)
2669
+ SENSITIVE = []
2601
2670
  include Aws::Structure
2602
2671
  end
2603
2672
 
@@ -2741,6 +2810,7 @@ module Aws::ElasticLoadBalancingV2
2741
2810
  :rule_arn,
2742
2811
  :conditions,
2743
2812
  :actions)
2813
+ SENSITIVE = []
2744
2814
  include Aws::Structure
2745
2815
  end
2746
2816
 
@@ -2752,6 +2822,7 @@ module Aws::ElasticLoadBalancingV2
2752
2822
  #
2753
2823
  class ModifyRuleOutput < Struct.new(
2754
2824
  :rules)
2825
+ SENSITIVE = []
2755
2826
  include Aws::Structure
2756
2827
  end
2757
2828
 
@@ -2781,6 +2852,7 @@ module Aws::ElasticLoadBalancingV2
2781
2852
  class ModifyTargetGroupAttributesInput < Struct.new(
2782
2853
  :target_group_arn,
2783
2854
  :attributes)
2855
+ SENSITIVE = []
2784
2856
  include Aws::Structure
2785
2857
  end
2786
2858
 
@@ -2792,6 +2864,7 @@ module Aws::ElasticLoadBalancingV2
2792
2864
  #
2793
2865
  class ModifyTargetGroupAttributesOutput < Struct.new(
2794
2866
  :attributes)
2867
+ SENSITIVE = []
2795
2868
  include Aws::Structure
2796
2869
  end
2797
2870
 
@@ -2869,7 +2942,10 @@ module Aws::ElasticLoadBalancingV2
2869
2942
  #
2870
2943
  # @!attribute [rw] matcher
2871
2944
  # \[HTTP/HTTPS health checks\] The HTTP codes to use when checking for
2872
- # a successful response from a target.
2945
+ # a successful response from a target. The possible values are from
2946
+ # 200 to 499. You can specify multiple values (for example,
2947
+ # "200,202") or a range of values (for example, "200-299"). The
2948
+ # default is 200.
2873
2949
  #
2874
2950
  # With Network Load Balancers, you can't modify this setting.
2875
2951
  # @return [Types::Matcher]
@@ -2887,6 +2963,7 @@ module Aws::ElasticLoadBalancingV2
2887
2963
  :healthy_threshold_count,
2888
2964
  :unhealthy_threshold_count,
2889
2965
  :matcher)
2966
+ SENSITIVE = []
2890
2967
  include Aws::Structure
2891
2968
  end
2892
2969
 
@@ -2898,6 +2975,7 @@ module Aws::ElasticLoadBalancingV2
2898
2975
  #
2899
2976
  class ModifyTargetGroupOutput < Struct.new(
2900
2977
  :target_groups)
2978
+ SENSITIVE = []
2901
2979
  include Aws::Structure
2902
2980
  end
2903
2981
 
@@ -2932,6 +3010,7 @@ module Aws::ElasticLoadBalancingV2
2932
3010
  #
2933
3011
  class PathPatternConditionConfig < Struct.new(
2934
3012
  :values)
3013
+ SENSITIVE = []
2935
3014
  include Aws::Structure
2936
3015
  end
2937
3016
 
@@ -2978,6 +3057,7 @@ module Aws::ElasticLoadBalancingV2
2978
3057
  #
2979
3058
  class QueryStringConditionConfig < Struct.new(
2980
3059
  :values)
3060
+ SENSITIVE = []
2981
3061
  include Aws::Structure
2982
3062
  end
2983
3063
 
@@ -3004,6 +3084,7 @@ module Aws::ElasticLoadBalancingV2
3004
3084
  class QueryStringKeyValuePair < Struct.new(
3005
3085
  :key,
3006
3086
  :value)
3087
+ SENSITIVE = []
3007
3088
  include Aws::Structure
3008
3089
  end
3009
3090
 
@@ -3084,6 +3165,7 @@ module Aws::ElasticLoadBalancingV2
3084
3165
  :path,
3085
3166
  :query,
3086
3167
  :status_code)
3168
+ SENSITIVE = []
3087
3169
  include Aws::Structure
3088
3170
  end
3089
3171
 
@@ -3118,6 +3200,7 @@ module Aws::ElasticLoadBalancingV2
3118
3200
  class RegisterTargetsInput < Struct.new(
3119
3201
  :target_group_arn,
3120
3202
  :targets)
3203
+ SENSITIVE = []
3121
3204
  include Aws::Structure
3122
3205
  end
3123
3206
 
@@ -3153,6 +3236,7 @@ module Aws::ElasticLoadBalancingV2
3153
3236
  class RemoveListenerCertificatesInput < Struct.new(
3154
3237
  :listener_arn,
3155
3238
  :certificates)
3239
+ SENSITIVE = []
3156
3240
  include Aws::Structure
3157
3241
  end
3158
3242
 
@@ -3181,6 +3265,7 @@ module Aws::ElasticLoadBalancingV2
3181
3265
  class RemoveTagsInput < Struct.new(
3182
3266
  :resource_arns,
3183
3267
  :tag_keys)
3268
+ SENSITIVE = []
3184
3269
  include Aws::Structure
3185
3270
  end
3186
3271
 
@@ -3229,11 +3314,17 @@ module Aws::ElasticLoadBalancingV2
3229
3314
  :conditions,
3230
3315
  :actions,
3231
3316
  :is_default)
3317
+ SENSITIVE = []
3232
3318
  include Aws::Structure
3233
3319
  end
3234
3320
 
3235
3321
  # Information about a condition for a rule.
3236
3322
  #
3323
+ # Each rule can optionally include up to one of each of the following
3324
+ # conditions: `http-request-method`, `host-header`, `path-pattern`, and
3325
+ # `source-ip`. Each rule can also optionally include one or more of each
3326
+ # of the following conditions: `http-header` and `query-string`.
3327
+ #
3237
3328
  # @note When making an API call, you may pass RuleCondition
3238
3329
  # data as a hash:
3239
3330
  #
@@ -3284,14 +3375,15 @@ module Aws::ElasticLoadBalancingV2
3284
3375
  # @return [String]
3285
3376
  #
3286
3377
  # @!attribute [rw] values
3287
- # The condition value. You can use `Values` if the rule contains only
3288
- # `host-header` and `path-pattern` conditions. Otherwise, you can use
3289
- # `HostHeaderConfig` for `host-header` conditions and
3290
- # `PathPatternConfig` for `path-pattern` conditions.
3291
- #
3292
- # If `Field` is `host-header`, you can specify a single host name (for
3293
- # example, my.example.com). A host name is case insensitive, can be up
3294
- # to 128 characters in length, and can contain any of the following
3378
+ # The condition value. Specify only when `Field` is `host-header` or
3379
+ # `path-pattern`. Alternatively, to specify multiple host names or
3380
+ # multiple path patterns, use `HostHeaderConfig` or
3381
+ # `PathPatternConfig`.
3382
+ #
3383
+ # If `Field` is `host-header` and you are not using
3384
+ # `HostHeaderConfig`, you can specify a single host name (for example,
3385
+ # my.example.com) in `Values`. A host name is case insensitive, can be
3386
+ # up to 128 characters in length, and can contain any of the following
3295
3387
  # characters.
3296
3388
  #
3297
3389
  # * A-Z, a-z, 0-9
@@ -3302,10 +3394,11 @@ module Aws::ElasticLoadBalancingV2
3302
3394
  #
3303
3395
  # * ? (matches exactly 1 character)
3304
3396
  #
3305
- # If `Field` is `path-pattern`, you can specify a single path pattern
3306
- # (for example, /img/*). A path pattern is case-sensitive, can be up
3307
- # to 128 characters in length, and can contain any of the following
3308
- # characters.
3397
+ # If `Field` is `path-pattern` and you are not using
3398
+ # `PathPatternConfig`, you can specify a single path pattern (for
3399
+ # example, /img/*) in `Values`. A path pattern is case-sensitive, can
3400
+ # be up to 128 characters in length, and can contain any of the
3401
+ # following characters.
3309
3402
  #
3310
3403
  # * A-Z, a-z, 0-9
3311
3404
  #
@@ -3359,6 +3452,7 @@ module Aws::ElasticLoadBalancingV2
3359
3452
  :query_string_config,
3360
3453
  :http_request_method_config,
3361
3454
  :source_ip_config)
3455
+ SENSITIVE = []
3362
3456
  include Aws::Structure
3363
3457
  end
3364
3458
 
@@ -3391,6 +3485,7 @@ module Aws::ElasticLoadBalancingV2
3391
3485
  class RulePriorityPair < Struct.new(
3392
3486
  :rule_arn,
3393
3487
  :priority)
3488
+ SENSITIVE = []
3394
3489
  include Aws::Structure
3395
3490
  end
3396
3491
 
@@ -3424,6 +3519,7 @@ module Aws::ElasticLoadBalancingV2
3424
3519
  class SetIpAddressTypeInput < Struct.new(
3425
3520
  :load_balancer_arn,
3426
3521
  :ip_address_type)
3522
+ SENSITIVE = []
3427
3523
  include Aws::Structure
3428
3524
  end
3429
3525
 
@@ -3435,6 +3531,7 @@ module Aws::ElasticLoadBalancingV2
3435
3531
  #
3436
3532
  class SetIpAddressTypeOutput < Struct.new(
3437
3533
  :ip_address_type)
3534
+ SENSITIVE = []
3438
3535
  include Aws::Structure
3439
3536
  end
3440
3537
 
@@ -3458,6 +3555,7 @@ module Aws::ElasticLoadBalancingV2
3458
3555
  #
3459
3556
  class SetRulePrioritiesInput < Struct.new(
3460
3557
  :rule_priorities)
3558
+ SENSITIVE = []
3461
3559
  include Aws::Structure
3462
3560
  end
3463
3561
 
@@ -3469,6 +3567,7 @@ module Aws::ElasticLoadBalancingV2
3469
3567
  #
3470
3568
  class SetRulePrioritiesOutput < Struct.new(
3471
3569
  :rules)
3570
+ SENSITIVE = []
3472
3571
  include Aws::Structure
3473
3572
  end
3474
3573
 
@@ -3493,6 +3592,7 @@ module Aws::ElasticLoadBalancingV2
3493
3592
  class SetSecurityGroupsInput < Struct.new(
3494
3593
  :load_balancer_arn,
3495
3594
  :security_groups)
3595
+ SENSITIVE = []
3496
3596
  include Aws::Structure
3497
3597
  end
3498
3598
 
@@ -3504,6 +3604,7 @@ module Aws::ElasticLoadBalancingV2
3504
3604
  #
3505
3605
  class SetSecurityGroupsOutput < Struct.new(
3506
3606
  :security_group_ids)
3607
+ SENSITIVE = []
3507
3608
  include Aws::Structure
3508
3609
  end
3509
3610
 
@@ -3555,6 +3656,7 @@ module Aws::ElasticLoadBalancingV2
3555
3656
  :load_balancer_arn,
3556
3657
  :subnets,
3557
3658
  :subnet_mappings)
3659
+ SENSITIVE = []
3558
3660
  include Aws::Structure
3559
3661
  end
3560
3662
 
@@ -3566,6 +3668,7 @@ module Aws::ElasticLoadBalancingV2
3566
3668
  #
3567
3669
  class SetSubnetsOutput < Struct.new(
3568
3670
  :availability_zones)
3671
+ SENSITIVE = []
3569
3672
  include Aws::Structure
3570
3673
  end
3571
3674
 
@@ -3598,6 +3701,7 @@ module Aws::ElasticLoadBalancingV2
3598
3701
  #
3599
3702
  class SourceIpConditionConfig < Struct.new(
3600
3703
  :values)
3704
+ SENSITIVE = []
3601
3705
  include Aws::Structure
3602
3706
  end
3603
3707
 
@@ -3621,6 +3725,7 @@ module Aws::ElasticLoadBalancingV2
3621
3725
  :ssl_protocols,
3622
3726
  :ciphers,
3623
3727
  :name)
3728
+ SENSITIVE = []
3624
3729
  include Aws::Structure
3625
3730
  end
3626
3731
 
@@ -3655,6 +3760,7 @@ module Aws::ElasticLoadBalancingV2
3655
3760
  :subnet_id,
3656
3761
  :allocation_id,
3657
3762
  :private_i_pv_4_address)
3763
+ SENSITIVE = []
3658
3764
  include Aws::Structure
3659
3765
  end
3660
3766
 
@@ -3687,6 +3793,7 @@ module Aws::ElasticLoadBalancingV2
3687
3793
  class Tag < Struct.new(
3688
3794
  :key,
3689
3795
  :value)
3796
+ SENSITIVE = []
3690
3797
  include Aws::Structure
3691
3798
  end
3692
3799
 
@@ -3705,6 +3812,7 @@ module Aws::ElasticLoadBalancingV2
3705
3812
  class TagDescription < Struct.new(
3706
3813
  :resource_arn,
3707
3814
  :tags)
3815
+ SENSITIVE = []
3708
3816
  include Aws::Structure
3709
3817
  end
3710
3818
 
@@ -3759,6 +3867,7 @@ module Aws::ElasticLoadBalancingV2
3759
3867
  :id,
3760
3868
  :port,
3761
3869
  :availability_zone)
3870
+ SENSITIVE = []
3762
3871
  include Aws::Structure
3763
3872
  end
3764
3873
 
@@ -3857,6 +3966,7 @@ module Aws::ElasticLoadBalancingV2
3857
3966
  :matcher,
3858
3967
  :load_balancer_arns,
3859
3968
  :target_type)
3969
+ SENSITIVE = []
3860
3970
  include Aws::Structure
3861
3971
  end
3862
3972
 
@@ -3909,8 +4019,7 @@ module Aws::ElasticLoadBalancingV2
3909
4019
  # during which a newly registered target receives an increasing
3910
4020
  # share of the traffic to the target group. After this time period
3911
4021
  # ends, the target receives its full share of traffic. The range is
3912
- # 30-900 seconds (15 minutes). Slow start mode is disabled by
3913
- # default.
4022
+ # 30-900 seconds (15 minutes). The default is 0 seconds (disabled).
3914
4023
  #
3915
4024
  # * `stickiness.lb_cookie.duration_seconds` - The time period, in
3916
4025
  # seconds, during which requests from a client should be routed to
@@ -3950,6 +4059,7 @@ module Aws::ElasticLoadBalancingV2
3950
4059
  class TargetGroupAttribute < Struct.new(
3951
4060
  :key,
3952
4061
  :value)
4062
+ SENSITIVE = []
3953
4063
  include Aws::Structure
3954
4064
  end
3955
4065
 
@@ -3984,6 +4094,7 @@ module Aws::ElasticLoadBalancingV2
3984
4094
  class TargetGroupStickinessConfig < Struct.new(
3985
4095
  :enabled,
3986
4096
  :duration_seconds)
4097
+ SENSITIVE = []
3987
4098
  include Aws::Structure
3988
4099
  end
3989
4100
 
@@ -4011,6 +4122,7 @@ module Aws::ElasticLoadBalancingV2
4011
4122
  class TargetGroupTuple < Struct.new(
4012
4123
  :target_group_arn,
4013
4124
  :weight)
4125
+ SENSITIVE = []
4014
4126
  include Aws::Structure
4015
4127
  end
4016
4128
 
@@ -4097,6 +4209,7 @@ module Aws::ElasticLoadBalancingV2
4097
4209
  :state,
4098
4210
  :reason,
4099
4211
  :description)
4212
+ SENSITIVE = []
4100
4213
  include Aws::Structure
4101
4214
  end
4102
4215
 
@@ -4120,6 +4233,7 @@ module Aws::ElasticLoadBalancingV2
4120
4233
  :target,
4121
4234
  :health_check_port,
4122
4235
  :target_health)
4236
+ SENSITIVE = []
4123
4237
  include Aws::Structure
4124
4238
  end
4125
4239
 
@@ -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:
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.44.0
4
+ version: 1.49.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-05-28 00:00:00.000000000 Z
11
+ date: 2020-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement