aws-sdk-elasticloadbalancing 1.22.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0dd507b7f3c4b1daea21bcd80e3cf6db5a11ae542b44234c8c4522429b56f6a6
4
- data.tar.gz: 3f076a710a5a48b113d137ad3d46c75fed9f1ac9d664c01b9163b2a91d20bced
3
+ metadata.gz: f7e867f3ea851a8a40fdaa46e8cd23360578a2ebf3e044a9850cf34f7d229979
4
+ data.tar.gz: cc90ecf156a0ed24f87eedc762a7685fe8fb8cc569e02f83990f13857afcbad0
5
5
  SHA512:
6
- metadata.gz: c336268de58ec12fc12dd51cc1c3a05a956e643010ae20225b4ea23a0876c51fa07952c657267d44481badd3ef1786ef23e086afb69c62425fd31c2e5aac6d8d
7
- data.tar.gz: 7f03a064be34145f3be374d32d9b7451e58e3edea97f8c4bf8c32dcae430860cd57558464291a7d921dc2d4348922f7776805ed359f1fe757168d9124a3d98cf
6
+ metadata.gz: 3ab5de10512b744569fa4f47d00c914d7dd8ab684060039cf644bc5a35ebbf6e794caec9c9c00c237126c702775cc16d41ca3a2371ce2d9fc279bf454b022e69
7
+ data.tar.gz: 04446025a640dfc600b7ff3d372d2c30180028825ec99797343385d581bd6b72357e3db97bd492989fc778a686276d89f594eca0a4a211cf87bd0735839077de
@@ -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-elasticloadbalancing/customizations'
43
45
  #
44
46
  # See {Errors} for more information.
45
47
  #
46
- # @service
48
+ # @!group service
47
49
  module Aws::ElasticLoadBalancing
48
50
 
49
- GEM_VERSION = '1.22.0'
51
+ GEM_VERSION = '1.27.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::ElasticLoadBalancing
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::ElasticLoadBalancing
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::ElasticLoadBalancing
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::ElasticLoadBalancing
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
@@ -320,7 +339,7 @@ module Aws::ElasticLoadBalancing
320
339
  #
321
340
  #
322
341
  #
323
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
342
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
324
343
  #
325
344
  # @option params [required, Array<String>] :load_balancer_names
326
345
  # The name of the load balancer. You can specify one load balancer only.
@@ -381,7 +400,7 @@ module Aws::ElasticLoadBalancing
381
400
  #
382
401
  #
383
402
  #
384
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-security-groups.html#elb-vpc-security-groups
403
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-security-groups.html#elb-vpc-security-groups
385
404
  #
386
405
  # @option params [required, String] :load_balancer_name
387
406
  # The name of the load balancer.
@@ -443,7 +462,7 @@ module Aws::ElasticLoadBalancing
443
462
  #
444
463
  #
445
464
  #
446
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-manage-subnets.html
465
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-manage-subnets.html
447
466
  #
448
467
  # @option params [required, String] :load_balancer_name
449
468
  # The name of the load balancer.
@@ -505,7 +524,7 @@ module Aws::ElasticLoadBalancing
505
524
  #
506
525
  #
507
526
  #
508
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-healthchecks.html
527
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-healthchecks.html
509
528
  #
510
529
  # @option params [required, String] :load_balancer_name
511
530
  # The name of the load balancer.
@@ -593,7 +612,7 @@ module Aws::ElasticLoadBalancing
593
612
  #
594
613
  #
595
614
  #
596
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-application
615
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-application
597
616
  #
598
617
  # @option params [required, String] :load_balancer_name
599
618
  # The name of the load balancer.
@@ -659,7 +678,7 @@ module Aws::ElasticLoadBalancing
659
678
  #
660
679
  #
661
680
  #
662
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-duration
681
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-duration
663
682
  #
664
683
  # @option params [required, String] :load_balancer_name
665
684
  # The name of the load balancer.
@@ -723,7 +742,7 @@ module Aws::ElasticLoadBalancing
723
742
  #
724
743
  #
725
744
  #
726
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-limits.html
745
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-limits.html
727
746
  #
728
747
  # @option params [required, String] :load_balancer_name
729
748
  # The name of the load balancer.
@@ -741,7 +760,7 @@ module Aws::ElasticLoadBalancing
741
760
  #
742
761
  #
743
762
  #
744
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
763
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
745
764
  #
746
765
  # @option params [Array<String>] :availability_zones
747
766
  # One or more Availability Zones from the same region as the load
@@ -774,7 +793,7 @@ module Aws::ElasticLoadBalancing
774
793
  #
775
794
  #
776
795
  #
777
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html#load-balancer-scheme
796
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html#load-balancer-scheme
778
797
  #
779
798
  # @option params [Array<Types::Tag>] :tags
780
799
  # A list of tags to assign to the load balancer.
@@ -784,7 +803,7 @@ module Aws::ElasticLoadBalancing
784
803
  #
785
804
  #
786
805
  #
787
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
806
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
788
807
  #
789
808
  # @return [Types::CreateAccessPointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
790
809
  #
@@ -983,7 +1002,7 @@ module Aws::ElasticLoadBalancing
983
1002
  #
984
1003
  #
985
1004
  #
986
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
1005
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
987
1006
  #
988
1007
  # @option params [required, String] :load_balancer_name
989
1008
  # The name of the load balancer.
@@ -1275,7 +1294,7 @@ module Aws::ElasticLoadBalancing
1275
1294
  #
1276
1295
  #
1277
1296
  #
1278
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-deregister-register-instances.html
1297
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-deregister-register-instances.html
1279
1298
  #
1280
1299
  # @option params [required, String] :load_balancer_name
1281
1300
  # The name of the load balancer.
@@ -1346,7 +1365,7 @@ module Aws::ElasticLoadBalancing
1346
1365
  #
1347
1366
  #
1348
1367
  #
1349
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-limits.html
1368
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-limits.html
1350
1369
  #
1351
1370
  # @option params [String] :marker
1352
1371
  # The marker for the next set of results. (You received this marker from
@@ -2003,7 +2022,7 @@ module Aws::ElasticLoadBalancing
2003
2022
  #
2004
2023
  #
2005
2024
  #
2006
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-az.html
2025
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-az.html
2007
2026
  #
2008
2027
  # @option params [required, String] :load_balancer_name
2009
2028
  # The name of the load balancer.
@@ -2068,7 +2087,7 @@ module Aws::ElasticLoadBalancing
2068
2087
  #
2069
2088
  #
2070
2089
  #
2071
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-az.html
2090
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-az.html
2072
2091
  #
2073
2092
  # @option params [required, String] :load_balancer_name
2074
2093
  # The name of the load balancer.
@@ -2143,10 +2162,10 @@ module Aws::ElasticLoadBalancing
2143
2162
  #
2144
2163
  #
2145
2164
  #
2146
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-crosszone-lb.html
2147
- # [2]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html
2148
- # [3]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/access-log-collection.html
2149
- # [4]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-idle-timeout.html
2165
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-crosszone-lb.html
2166
+ # [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html
2167
+ # [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/access-log-collection.html
2168
+ # [4]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-idle-timeout.html
2150
2169
  #
2151
2170
  # @option params [required, String] :load_balancer_name
2152
2171
  # The name of the load balancer.
@@ -2290,7 +2309,7 @@ module Aws::ElasticLoadBalancing
2290
2309
  #
2291
2310
  #
2292
2311
  #
2293
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-deregister-register-instances.html
2312
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-deregister-register-instances.html
2294
2313
  #
2295
2314
  # @option params [required, String] :load_balancer_name
2296
2315
  # The name of the load balancer.
@@ -2413,7 +2432,7 @@ module Aws::ElasticLoadBalancing
2413
2432
  #
2414
2433
  #
2415
2434
  #
2416
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-update-ssl-cert.html
2435
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-update-ssl-cert.html
2417
2436
  #
2418
2437
  # @option params [required, String] :load_balancer_name
2419
2438
  # The name of the load balancer.
@@ -2475,8 +2494,8 @@ module Aws::ElasticLoadBalancing
2475
2494
  #
2476
2495
  #
2477
2496
  #
2478
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-create-https-ssl-load-balancer.html#configure_backendauth_clt
2479
- # [2]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-proxy-protocol.html
2497
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-create-https-ssl-load-balancer.html#configure_backendauth_clt
2498
+ # [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-proxy-protocol.html
2480
2499
  #
2481
2500
  # @option params [required, String] :load_balancer_name
2482
2501
  # The name of the load balancer.
@@ -2533,9 +2552,9 @@ module Aws::ElasticLoadBalancing
2533
2552
  #
2534
2553
  #
2535
2554
  #
2536
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/ssl-config-update.html
2537
- # [2]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-duration
2538
- # [3]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-application
2555
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/ssl-config-update.html
2556
+ # [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-duration
2557
+ # [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-sticky-sessions.html#enable-sticky-sessions-application
2539
2558
  #
2540
2559
  # @option params [required, String] :load_balancer_name
2541
2560
  # The name of the load balancer.
@@ -2593,7 +2612,7 @@ module Aws::ElasticLoadBalancing
2593
2612
  params: params,
2594
2613
  config: config)
2595
2614
  context[:gem_name] = 'aws-sdk-elasticloadbalancing'
2596
- context[:gem_version] = '1.22.0'
2615
+ context[:gem_version] = '1.27.0'
2597
2616
  Seahorse::Client::Request.new(handlers, context)
2598
2617
  end
2599
2618
 
@@ -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:
@@ -48,6 +50,7 @@ module Aws::ElasticLoadBalancing
48
50
  :s3_bucket_name,
49
51
  :emit_interval,
50
52
  :s3_bucket_prefix)
53
+ SENSITIVE = []
51
54
  include Aws::Structure
52
55
  end
53
56
 
@@ -81,6 +84,7 @@ module Aws::ElasticLoadBalancing
81
84
  class AddAvailabilityZonesInput < Struct.new(
82
85
  :load_balancer_name,
83
86
  :availability_zones)
87
+ SENSITIVE = []
84
88
  include Aws::Structure
85
89
  end
86
90
 
@@ -94,6 +98,7 @@ module Aws::ElasticLoadBalancing
94
98
  #
95
99
  class AddAvailabilityZonesOutput < Struct.new(
96
100
  :availability_zones)
101
+ SENSITIVE = []
97
102
  include Aws::Structure
98
103
  end
99
104
 
@@ -126,6 +131,7 @@ module Aws::ElasticLoadBalancing
126
131
  class AddTagsInput < Struct.new(
127
132
  :load_balancer_names,
128
133
  :tags)
134
+ SENSITIVE = []
129
135
  include Aws::Structure
130
136
  end
131
137
 
@@ -135,7 +141,7 @@ module Aws::ElasticLoadBalancing
135
141
  #
136
142
  class AddTagsOutput < Aws::EmptyStructure; end
137
143
 
138
- # This data type is reserved.
144
+ # Information about additional load balancer attributes.
139
145
  #
140
146
  # @note When making an API call, you may pass AdditionalAttribute
141
147
  # data as a hash:
@@ -146,11 +152,20 @@ module Aws::ElasticLoadBalancing
146
152
  # }
147
153
  #
148
154
  # @!attribute [rw] key
149
- # This parameter is reserved.
155
+ # The name of the attribute.
156
+ #
157
+ # The following attribute is supported.
158
+ #
159
+ # * `elb.http.desyncmitigationmode` - Determines how the load balancer
160
+ # handles requests that might pose a security risk to your
161
+ # application. The possible values are `monitor`, `defensive`, and
162
+ # `strictest`. The default is `defensive`.
163
+ #
164
+ # ^
150
165
  # @return [String]
151
166
  #
152
167
  # @!attribute [rw] value
153
- # This parameter is reserved.
168
+ # This value of the attribute.
154
169
  # @return [String]
155
170
  #
156
171
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/AdditionalAttribute AWS API Documentation
@@ -158,6 +173,7 @@ module Aws::ElasticLoadBalancing
158
173
  class AdditionalAttribute < Struct.new(
159
174
  :key,
160
175
  :value)
176
+ SENSITIVE = []
161
177
  include Aws::Structure
162
178
  end
163
179
 
@@ -178,6 +194,7 @@ module Aws::ElasticLoadBalancing
178
194
  class AppCookieStickinessPolicy < Struct.new(
179
195
  :policy_name,
180
196
  :cookie_name)
197
+ SENSITIVE = []
181
198
  include Aws::Structure
182
199
  end
183
200
 
@@ -205,6 +222,7 @@ module Aws::ElasticLoadBalancing
205
222
  class ApplySecurityGroupsToLoadBalancerInput < Struct.new(
206
223
  :load_balancer_name,
207
224
  :security_groups)
225
+ SENSITIVE = []
208
226
  include Aws::Structure
209
227
  end
210
228
 
@@ -218,6 +236,7 @@ module Aws::ElasticLoadBalancing
218
236
  #
219
237
  class ApplySecurityGroupsToLoadBalancerOutput < Struct.new(
220
238
  :security_groups)
239
+ SENSITIVE = []
221
240
  include Aws::Structure
222
241
  end
223
242
 
@@ -245,6 +264,7 @@ module Aws::ElasticLoadBalancing
245
264
  class AttachLoadBalancerToSubnetsInput < Struct.new(
246
265
  :load_balancer_name,
247
266
  :subnets)
267
+ SENSITIVE = []
248
268
  include Aws::Structure
249
269
  end
250
270
 
@@ -258,6 +278,7 @@ module Aws::ElasticLoadBalancing
258
278
  #
259
279
  class AttachLoadBalancerToSubnetsOutput < Struct.new(
260
280
  :subnets)
281
+ SENSITIVE = []
261
282
  include Aws::Structure
262
283
  end
263
284
 
@@ -276,6 +297,7 @@ module Aws::ElasticLoadBalancing
276
297
  class BackendServerDescription < Struct.new(
277
298
  :instance_port,
278
299
  :policy_names)
300
+ SENSITIVE = []
279
301
  include Aws::Structure
280
302
  end
281
303
 
@@ -317,6 +339,7 @@ module Aws::ElasticLoadBalancing
317
339
  class ConfigureHealthCheckInput < Struct.new(
318
340
  :load_balancer_name,
319
341
  :health_check)
342
+ SENSITIVE = []
320
343
  include Aws::Structure
321
344
  end
322
345
 
@@ -330,6 +353,7 @@ module Aws::ElasticLoadBalancing
330
353
  #
331
354
  class ConfigureHealthCheckOutput < Struct.new(
332
355
  :health_check)
356
+ SENSITIVE = []
333
357
  include Aws::Structure
334
358
  end
335
359
 
@@ -358,6 +382,7 @@ module Aws::ElasticLoadBalancing
358
382
  class ConnectionDraining < Struct.new(
359
383
  :enabled,
360
384
  :timeout)
385
+ SENSITIVE = []
361
386
  include Aws::Structure
362
387
  end
363
388
 
@@ -380,6 +405,7 @@ module Aws::ElasticLoadBalancing
380
405
  #
381
406
  class ConnectionSettings < Struct.new(
382
407
  :idle_timeout)
408
+ SENSITIVE = []
383
409
  include Aws::Structure
384
410
  end
385
411
 
@@ -428,7 +454,7 @@ module Aws::ElasticLoadBalancing
428
454
  #
429
455
  #
430
456
  #
431
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
457
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
432
458
  # @return [Array<Types::Listener>]
433
459
  #
434
460
  # @!attribute [rw] availability_zones
@@ -465,7 +491,7 @@ module Aws::ElasticLoadBalancing
465
491
  #
466
492
  #
467
493
  #
468
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html#load-balancer-scheme
494
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html#load-balancer-scheme
469
495
  # @return [String]
470
496
  #
471
497
  # @!attribute [rw] tags
@@ -476,7 +502,7 @@ module Aws::ElasticLoadBalancing
476
502
  #
477
503
  #
478
504
  #
479
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
505
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/add-remove-tags.html
480
506
  # @return [Array<Types::Tag>]
481
507
  #
482
508
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/CreateAccessPointInput AWS API Documentation
@@ -489,6 +515,7 @@ module Aws::ElasticLoadBalancing
489
515
  :security_groups,
490
516
  :scheme,
491
517
  :tags)
518
+ SENSITIVE = []
492
519
  include Aws::Structure
493
520
  end
494
521
 
@@ -502,6 +529,7 @@ module Aws::ElasticLoadBalancing
502
529
  #
503
530
  class CreateAccessPointOutput < Struct.new(
504
531
  :dns_name)
532
+ SENSITIVE = []
505
533
  include Aws::Structure
506
534
  end
507
535
 
@@ -536,6 +564,7 @@ module Aws::ElasticLoadBalancing
536
564
  :load_balancer_name,
537
565
  :policy_name,
538
566
  :cookie_name)
567
+ SENSITIVE = []
539
568
  include Aws::Structure
540
569
  end
541
570
 
@@ -579,6 +608,7 @@ module Aws::ElasticLoadBalancing
579
608
  :load_balancer_name,
580
609
  :policy_name,
581
610
  :cookie_expiration_period)
611
+ SENSITIVE = []
582
612
  include Aws::Structure
583
613
  end
584
614
 
@@ -619,6 +649,7 @@ module Aws::ElasticLoadBalancing
619
649
  class CreateLoadBalancerListenerInput < Struct.new(
620
650
  :load_balancer_name,
621
651
  :listeners)
652
+ SENSITIVE = []
622
653
  include Aws::Structure
623
654
  end
624
655
 
@@ -670,6 +701,7 @@ module Aws::ElasticLoadBalancing
670
701
  :policy_name,
671
702
  :policy_type_name,
672
703
  :policy_attributes)
704
+ SENSITIVE = []
673
705
  include Aws::Structure
674
706
  end
675
707
 
@@ -697,6 +729,7 @@ module Aws::ElasticLoadBalancing
697
729
  #
698
730
  class CrossZoneLoadBalancing < Struct.new(
699
731
  :enabled)
732
+ SENSITIVE = []
700
733
  include Aws::Structure
701
734
  end
702
735
 
@@ -717,6 +750,7 @@ module Aws::ElasticLoadBalancing
717
750
  #
718
751
  class DeleteAccessPointInput < Struct.new(
719
752
  :load_balancer_name)
753
+ SENSITIVE = []
720
754
  include Aws::Structure
721
755
  end
722
756
 
@@ -749,6 +783,7 @@ module Aws::ElasticLoadBalancing
749
783
  class DeleteLoadBalancerListenerInput < Struct.new(
750
784
  :load_balancer_name,
751
785
  :load_balancer_ports)
786
+ SENSITIVE = []
752
787
  include Aws::Structure
753
788
  end
754
789
 
@@ -781,6 +816,7 @@ module Aws::ElasticLoadBalancing
781
816
  class DeleteLoadBalancerPolicyInput < Struct.new(
782
817
  :load_balancer_name,
783
818
  :policy_name)
819
+ SENSITIVE = []
784
820
  include Aws::Structure
785
821
  end
786
822
 
@@ -824,6 +860,7 @@ module Aws::ElasticLoadBalancing
824
860
  class DeregisterEndPointsInput < Struct.new(
825
861
  :load_balancer_name,
826
862
  :instances)
863
+ SENSITIVE = []
827
864
  include Aws::Structure
828
865
  end
829
866
 
@@ -837,6 +874,7 @@ module Aws::ElasticLoadBalancing
837
874
  #
838
875
  class DeregisterEndPointsOutput < Struct.new(
839
876
  :instances)
877
+ SENSITIVE = []
840
878
  include Aws::Structure
841
879
  end
842
880
 
@@ -871,6 +909,7 @@ module Aws::ElasticLoadBalancing
871
909
  :load_balancer_names,
872
910
  :marker,
873
911
  :page_size)
912
+ SENSITIVE = []
874
913
  include Aws::Structure
875
914
  end
876
915
 
@@ -890,6 +929,7 @@ module Aws::ElasticLoadBalancing
890
929
  class DescribeAccessPointsOutput < Struct.new(
891
930
  :load_balancer_descriptions,
892
931
  :next_marker)
932
+ SENSITIVE = []
893
933
  include Aws::Structure
894
934
  end
895
935
 
@@ -915,6 +955,7 @@ module Aws::ElasticLoadBalancing
915
955
  class DescribeAccountLimitsInput < Struct.new(
916
956
  :marker,
917
957
  :page_size)
958
+ SENSITIVE = []
918
959
  include Aws::Structure
919
960
  end
920
961
 
@@ -932,6 +973,7 @@ module Aws::ElasticLoadBalancing
932
973
  class DescribeAccountLimitsOutput < Struct.new(
933
974
  :limits,
934
975
  :next_marker)
976
+ SENSITIVE = []
935
977
  include Aws::Structure
936
978
  end
937
979
 
@@ -962,6 +1004,7 @@ module Aws::ElasticLoadBalancing
962
1004
  class DescribeEndPointStateInput < Struct.new(
963
1005
  :load_balancer_name,
964
1006
  :instances)
1007
+ SENSITIVE = []
965
1008
  include Aws::Structure
966
1009
  end
967
1010
 
@@ -975,6 +1018,7 @@ module Aws::ElasticLoadBalancing
975
1018
  #
976
1019
  class DescribeEndPointStateOutput < Struct.new(
977
1020
  :instance_states)
1021
+ SENSITIVE = []
978
1022
  include Aws::Structure
979
1023
  end
980
1024
 
@@ -995,6 +1039,7 @@ module Aws::ElasticLoadBalancing
995
1039
  #
996
1040
  class DescribeLoadBalancerAttributesInput < Struct.new(
997
1041
  :load_balancer_name)
1042
+ SENSITIVE = []
998
1043
  include Aws::Structure
999
1044
  end
1000
1045
 
@@ -1008,6 +1053,7 @@ module Aws::ElasticLoadBalancing
1008
1053
  #
1009
1054
  class DescribeLoadBalancerAttributesOutput < Struct.new(
1010
1055
  :load_balancer_attributes)
1056
+ SENSITIVE = []
1011
1057
  include Aws::Structure
1012
1058
  end
1013
1059
 
@@ -1034,6 +1080,7 @@ module Aws::ElasticLoadBalancing
1034
1080
  class DescribeLoadBalancerPoliciesInput < Struct.new(
1035
1081
  :load_balancer_name,
1036
1082
  :policy_names)
1083
+ SENSITIVE = []
1037
1084
  include Aws::Structure
1038
1085
  end
1039
1086
 
@@ -1047,6 +1094,7 @@ module Aws::ElasticLoadBalancing
1047
1094
  #
1048
1095
  class DescribeLoadBalancerPoliciesOutput < Struct.new(
1049
1096
  :policy_descriptions)
1097
+ SENSITIVE = []
1050
1098
  include Aws::Structure
1051
1099
  end
1052
1100
 
@@ -1068,6 +1116,7 @@ module Aws::ElasticLoadBalancing
1068
1116
  #
1069
1117
  class DescribeLoadBalancerPolicyTypesInput < Struct.new(
1070
1118
  :policy_type_names)
1119
+ SENSITIVE = []
1071
1120
  include Aws::Structure
1072
1121
  end
1073
1122
 
@@ -1081,6 +1130,7 @@ module Aws::ElasticLoadBalancing
1081
1130
  #
1082
1131
  class DescribeLoadBalancerPolicyTypesOutput < Struct.new(
1083
1132
  :policy_type_descriptions)
1133
+ SENSITIVE = []
1084
1134
  include Aws::Structure
1085
1135
  end
1086
1136
 
@@ -1101,6 +1151,7 @@ module Aws::ElasticLoadBalancing
1101
1151
  #
1102
1152
  class DescribeTagsInput < Struct.new(
1103
1153
  :load_balancer_names)
1154
+ SENSITIVE = []
1104
1155
  include Aws::Structure
1105
1156
  end
1106
1157
 
@@ -1114,6 +1165,7 @@ module Aws::ElasticLoadBalancing
1114
1165
  #
1115
1166
  class DescribeTagsOutput < Struct.new(
1116
1167
  :tag_descriptions)
1168
+ SENSITIVE = []
1117
1169
  include Aws::Structure
1118
1170
  end
1119
1171
 
@@ -1140,6 +1192,7 @@ module Aws::ElasticLoadBalancing
1140
1192
  class DetachLoadBalancerFromSubnetsInput < Struct.new(
1141
1193
  :load_balancer_name,
1142
1194
  :subnets)
1195
+ SENSITIVE = []
1143
1196
  include Aws::Structure
1144
1197
  end
1145
1198
 
@@ -1153,6 +1206,7 @@ module Aws::ElasticLoadBalancing
1153
1206
  #
1154
1207
  class DetachLoadBalancerFromSubnetsOutput < Struct.new(
1155
1208
  :subnets)
1209
+ SENSITIVE = []
1156
1210
  include Aws::Structure
1157
1211
  end
1158
1212
 
@@ -1248,6 +1302,7 @@ module Aws::ElasticLoadBalancing
1248
1302
  :timeout,
1249
1303
  :unhealthy_threshold,
1250
1304
  :healthy_threshold)
1305
+ SENSITIVE = []
1251
1306
  include Aws::Structure
1252
1307
  end
1253
1308
 
@@ -1268,6 +1323,7 @@ module Aws::ElasticLoadBalancing
1268
1323
  #
1269
1324
  class Instance < Struct.new(
1270
1325
  :instance_id)
1326
+ SENSITIVE = []
1271
1327
  include Aws::Structure
1272
1328
  end
1273
1329
 
@@ -1330,6 +1386,7 @@ module Aws::ElasticLoadBalancing
1330
1386
  :state,
1331
1387
  :reason_code,
1332
1388
  :description)
1389
+ SENSITIVE = []
1333
1390
  include Aws::Structure
1334
1391
  end
1335
1392
 
@@ -1382,6 +1439,7 @@ module Aws::ElasticLoadBalancing
1382
1439
  class LBCookieStickinessPolicy < Struct.new(
1383
1440
  :policy_name,
1384
1441
  :cookie_expiration_period)
1442
+ SENSITIVE = []
1385
1443
  include Aws::Structure
1386
1444
  end
1387
1445
 
@@ -1407,6 +1465,7 @@ module Aws::ElasticLoadBalancing
1407
1465
  class Limit < Struct.new(
1408
1466
  :name,
1409
1467
  :max)
1468
+ SENSITIVE = []
1410
1469
  include Aws::Structure
1411
1470
  end
1412
1471
 
@@ -1418,7 +1477,7 @@ module Aws::ElasticLoadBalancing
1418
1477
  #
1419
1478
  #
1420
1479
  #
1421
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
1480
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html
1422
1481
  #
1423
1482
  # @note When making an API call, you may pass Listener
1424
1483
  # data as a hash:
@@ -1447,8 +1506,9 @@ module Aws::ElasticLoadBalancing
1447
1506
  # The protocol to use for routing traffic to instances: HTTP, HTTPS,
1448
1507
  # TCP, or SSL.
1449
1508
  #
1450
- # If the front-end protocol is HTTP, HTTPS, TCP, or SSL,
1451
- # `InstanceProtocol` must be at the same protocol.
1509
+ # If the front-end protocol is TCP or SSL, the back-end protocol must
1510
+ # be TCP or SSL. If the front-end protocol is HTTP or HTTPS, the
1511
+ # back-end protocol must be HTTP or HTTPS.
1452
1512
  #
1453
1513
  # If there is another listener with the same `InstancePort` whose
1454
1514
  # `InstanceProtocol` is secure, (HTTPS or SSL), the listener's
@@ -1475,6 +1535,7 @@ module Aws::ElasticLoadBalancing
1475
1535
  :instance_protocol,
1476
1536
  :instance_port,
1477
1537
  :ssl_certificate_id)
1538
+ SENSITIVE = []
1478
1539
  include Aws::Structure
1479
1540
  end
1480
1541
 
@@ -1493,6 +1554,7 @@ module Aws::ElasticLoadBalancing
1493
1554
  class ListenerDescription < Struct.new(
1494
1555
  :listener,
1495
1556
  :policy_names)
1557
+ SENSITIVE = []
1496
1558
  include Aws::Structure
1497
1559
  end
1498
1560
 
@@ -1548,7 +1610,7 @@ module Aws::ElasticLoadBalancing
1548
1610
  #
1549
1611
  #
1550
1612
  #
1551
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-crosszone-lb.html
1613
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-disable-crosszone-lb.html
1552
1614
  # @return [Types::CrossZoneLoadBalancing]
1553
1615
  #
1554
1616
  # @!attribute [rw] access_log
@@ -1561,7 +1623,7 @@ module Aws::ElasticLoadBalancing
1561
1623
  #
1562
1624
  #
1563
1625
  #
1564
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-access-logs.html
1626
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/enable-access-logs.html
1565
1627
  # @return [Types::AccessLog]
1566
1628
  #
1567
1629
  # @!attribute [rw] connection_draining
@@ -1574,7 +1636,7 @@ module Aws::ElasticLoadBalancing
1574
1636
  #
1575
1637
  #
1576
1638
  #
1577
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html
1639
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html
1578
1640
  # @return [Types::ConnectionDraining]
1579
1641
  #
1580
1642
  # @!attribute [rw] connection_settings
@@ -1588,11 +1650,11 @@ module Aws::ElasticLoadBalancing
1588
1650
  #
1589
1651
  #
1590
1652
  #
1591
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-idle-timeout.html
1653
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-idle-timeout.html
1592
1654
  # @return [Types::ConnectionSettings]
1593
1655
  #
1594
1656
  # @!attribute [rw] additional_attributes
1595
- # This parameter is reserved.
1657
+ # Any additional attributes.
1596
1658
  # @return [Array<Types::AdditionalAttribute>]
1597
1659
  #
1598
1660
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/LoadBalancerAttributes AWS API Documentation
@@ -1603,6 +1665,7 @@ module Aws::ElasticLoadBalancing
1603
1665
  :connection_draining,
1604
1666
  :connection_settings,
1605
1667
  :additional_attributes)
1668
+ SENSITIVE = []
1606
1669
  include Aws::Structure
1607
1670
  end
1608
1671
 
@@ -1624,7 +1687,7 @@ module Aws::ElasticLoadBalancing
1624
1687
  #
1625
1688
  #
1626
1689
  #
1627
- # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/using-domain-names-with-elb.html
1690
+ # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/using-domain-names-with-elb.html
1628
1691
  # @return [String]
1629
1692
  #
1630
1693
  # @!attribute [rw] canonical_hosted_zone_name_id
@@ -1708,6 +1771,7 @@ module Aws::ElasticLoadBalancing
1708
1771
  :security_groups,
1709
1772
  :created_time,
1710
1773
  :scheme)
1774
+ SENSITIVE = []
1711
1775
  include Aws::Structure
1712
1776
  end
1713
1777
 
@@ -1757,6 +1821,7 @@ module Aws::ElasticLoadBalancing
1757
1821
  class ModifyLoadBalancerAttributesInput < Struct.new(
1758
1822
  :load_balancer_name,
1759
1823
  :load_balancer_attributes)
1824
+ SENSITIVE = []
1760
1825
  include Aws::Structure
1761
1826
  end
1762
1827
 
@@ -1775,6 +1840,7 @@ module Aws::ElasticLoadBalancing
1775
1840
  class ModifyLoadBalancerAttributesOutput < Struct.new(
1776
1841
  :load_balancer_name,
1777
1842
  :load_balancer_attributes)
1843
+ SENSITIVE = []
1778
1844
  include Aws::Structure
1779
1845
  end
1780
1846
 
@@ -1806,6 +1872,7 @@ module Aws::ElasticLoadBalancing
1806
1872
  :app_cookie_stickiness_policies,
1807
1873
  :lb_cookie_stickiness_policies,
1808
1874
  :other_policies)
1875
+ SENSITIVE = []
1809
1876
  include Aws::Structure
1810
1877
  end
1811
1878
 
@@ -1832,6 +1899,7 @@ module Aws::ElasticLoadBalancing
1832
1899
  class PolicyAttribute < Struct.new(
1833
1900
  :attribute_name,
1834
1901
  :attribute_value)
1902
+ SENSITIVE = []
1835
1903
  include Aws::Structure
1836
1904
  end
1837
1905
 
@@ -1850,6 +1918,7 @@ module Aws::ElasticLoadBalancing
1850
1918
  class PolicyAttributeDescription < Struct.new(
1851
1919
  :attribute_name,
1852
1920
  :attribute_value)
1921
+ SENSITIVE = []
1853
1922
  include Aws::Structure
1854
1923
  end
1855
1924
 
@@ -1893,6 +1962,7 @@ module Aws::ElasticLoadBalancing
1893
1962
  :description,
1894
1963
  :default_value,
1895
1964
  :cardinality)
1965
+ SENSITIVE = []
1896
1966
  include Aws::Structure
1897
1967
  end
1898
1968
 
@@ -1916,6 +1986,7 @@ module Aws::ElasticLoadBalancing
1916
1986
  :policy_name,
1917
1987
  :policy_type_name,
1918
1988
  :policy_attribute_descriptions)
1989
+ SENSITIVE = []
1919
1990
  include Aws::Structure
1920
1991
  end
1921
1992
 
@@ -1946,6 +2017,7 @@ module Aws::ElasticLoadBalancing
1946
2017
  :policy_type_name,
1947
2018
  :description,
1948
2019
  :policy_attribute_type_descriptions)
2020
+ SENSITIVE = []
1949
2021
  include Aws::Structure
1950
2022
  end
1951
2023
 
@@ -1982,6 +2054,7 @@ module Aws::ElasticLoadBalancing
1982
2054
  class RegisterEndPointsInput < Struct.new(
1983
2055
  :load_balancer_name,
1984
2056
  :instances)
2057
+ SENSITIVE = []
1985
2058
  include Aws::Structure
1986
2059
  end
1987
2060
 
@@ -1995,6 +2068,7 @@ module Aws::ElasticLoadBalancing
1995
2068
  #
1996
2069
  class RegisterEndPointsOutput < Struct.new(
1997
2070
  :instances)
2071
+ SENSITIVE = []
1998
2072
  include Aws::Structure
1999
2073
  end
2000
2074
 
@@ -2021,6 +2095,7 @@ module Aws::ElasticLoadBalancing
2021
2095
  class RemoveAvailabilityZonesInput < Struct.new(
2022
2096
  :load_balancer_name,
2023
2097
  :availability_zones)
2098
+ SENSITIVE = []
2024
2099
  include Aws::Structure
2025
2100
  end
2026
2101
 
@@ -2034,6 +2109,7 @@ module Aws::ElasticLoadBalancing
2034
2109
  #
2035
2110
  class RemoveAvailabilityZonesOutput < Struct.new(
2036
2111
  :availability_zones)
2112
+ SENSITIVE = []
2037
2113
  include Aws::Structure
2038
2114
  end
2039
2115
 
@@ -2065,6 +2141,7 @@ module Aws::ElasticLoadBalancing
2065
2141
  class RemoveTagsInput < Struct.new(
2066
2142
  :load_balancer_names,
2067
2143
  :tags)
2144
+ SENSITIVE = []
2068
2145
  include Aws::Structure
2069
2146
  end
2070
2147
 
@@ -2103,6 +2180,7 @@ module Aws::ElasticLoadBalancing
2103
2180
  :load_balancer_name,
2104
2181
  :load_balancer_port,
2105
2182
  :ssl_certificate_id)
2183
+ SENSITIVE = []
2106
2184
  include Aws::Structure
2107
2185
  end
2108
2186
 
@@ -2142,6 +2220,7 @@ module Aws::ElasticLoadBalancing
2142
2220
  :load_balancer_name,
2143
2221
  :instance_port,
2144
2222
  :policy_names)
2223
+ SENSITIVE = []
2145
2224
  include Aws::Structure
2146
2225
  end
2147
2226
 
@@ -2182,6 +2261,7 @@ module Aws::ElasticLoadBalancing
2182
2261
  :load_balancer_name,
2183
2262
  :load_balancer_port,
2184
2263
  :policy_names)
2264
+ SENSITIVE = []
2185
2265
  include Aws::Structure
2186
2266
  end
2187
2267
 
@@ -2206,6 +2286,7 @@ module Aws::ElasticLoadBalancing
2206
2286
  class SourceSecurityGroup < Struct.new(
2207
2287
  :owner_alias,
2208
2288
  :group_name)
2289
+ SENSITIVE = []
2209
2290
  include Aws::Structure
2210
2291
  end
2211
2292
 
@@ -2238,6 +2319,7 @@ module Aws::ElasticLoadBalancing
2238
2319
  class Tag < Struct.new(
2239
2320
  :key,
2240
2321
  :value)
2322
+ SENSITIVE = []
2241
2323
  include Aws::Structure
2242
2324
  end
2243
2325
 
@@ -2256,6 +2338,7 @@ module Aws::ElasticLoadBalancing
2256
2338
  class TagDescription < Struct.new(
2257
2339
  :load_balancer_name,
2258
2340
  :tags)
2341
+ SENSITIVE = []
2259
2342
  include Aws::Structure
2260
2343
  end
2261
2344
 
@@ -2276,6 +2359,7 @@ module Aws::ElasticLoadBalancing
2276
2359
  #
2277
2360
  class TagKeyOnly < Struct.new(
2278
2361
  :key)
2362
+ SENSITIVE = []
2279
2363
  include Aws::Structure
2280
2364
  end
2281
2365
 
@@ -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-elasticloadbalancing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.27.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