aws-sdk-elasticloadbalancingv2 1.19.0 → 1.20.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
  SHA1:
3
- metadata.gz: e5d2accf5253668c5067fc4458b7e027ef507e57
4
- data.tar.gz: 469d2c92186cfa0dc6b26de66818d718c00d506d
3
+ metadata.gz: c40fc00de16d72af80ca1d2e6c290dec18b186cc
4
+ data.tar.gz: a5934784c571bed8de5b96f706b53a6890a442d3
5
5
  SHA512:
6
- metadata.gz: fa014a4effc6ede279c15ed5cc772a9a3a85bd96e05e2227423e68b2e30e3f9e8c56cb4e9337d53cf2a92c461a575346ab468e19c18524b8ce08a34b81ce83aa
7
- data.tar.gz: 6a9ebf1542c3a5f7bdc80aca7cf66a469f01ef56a9b29d256222dbe6949afab33dbd3aecd368eed7bf003be616de8bf00ec5430371e706e54bd2d0ec865ce2d9
6
+ metadata.gz: 368f7e67a89c047ca3a324ec799fff34e698239c5bc9dcbbf91eb4011cbeb8f129c91451f4916e228833e1f9840ff9c8c31fe763562bbd24deec8d2a94514530
7
+ data.tar.gz: 5b233120ae54e4dc4e4390332b4a1f6890ab5b2352846b95f436a50b0f58e2e3232669b07ce6fb5eea7d82f4e74956c13a36bc00a67e37414e05be01bc306a3a
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
43
43
  # @service
44
44
  module Aws::ElasticLoadBalancingV2
45
45
 
46
- GEM_VERSION = '1.19.0'
46
+ GEM_VERSION = '1.20.0'
47
47
 
48
48
  end
@@ -205,7 +205,7 @@ module Aws::ElasticLoadBalancingV2
205
205
 
206
206
  # @!group API Operations
207
207
 
208
- # Adds the specified certificate to the specified secure listener.
208
+ # Adds the specified certificate to the specified HTTPS listener.
209
209
  #
210
210
  # If the certificate was already added, the call is successful but the
211
211
  # certificate is not added again.
@@ -341,19 +341,20 @@ module Aws::ElasticLoadBalancingV2
341
341
  # @option params [required, String] :protocol
342
342
  # The protocol for connections from clients to the load balancer. For
343
343
  # Application Load Balancers, the supported protocols are HTTP and
344
- # HTTPS. For Network Load Balancers, the supported protocol is TCP.
344
+ # HTTPS. For Network Load Balancers, the supported protocols are TCP and
345
+ # TLS.
345
346
  #
346
347
  # @option params [required, Integer] :port
347
348
  # The port on which the load balancer is listening.
348
349
  #
349
350
  # @option params [String] :ssl_policy
350
- # \[HTTPS listeners\] The security policy that defines which ciphers and
351
- # protocols are supported. The default is the current predefined
352
- # security policy.
351
+ # \[HTTPS and TLS listeners\] The security policy that defines which
352
+ # ciphers and protocols are supported. The default is the current
353
+ # predefined security policy.
353
354
  #
354
355
  # @option params [Array<Types::Certificate>] :certificates
355
- # \[HTTPS listeners\] The default SSL server certificate. You must
356
- # provide exactly one certificate. Set `CertificateArn` to the
356
+ # \[HTTPS and TLS listeners\] The default SSL server certificate. You
357
+ # must provide exactly one certificate. Set `CertificateArn` to the
357
358
  # certificate ARN but do not set `IsDefault`.
358
359
  #
359
360
  # To create a certificate list, use AddListenerCertificates.
@@ -364,13 +365,14 @@ module Aws::ElasticLoadBalancingV2
364
365
  #
365
366
  # If the action type is `forward`, you specify a target group. The
366
367
  # protocol of the target group must be HTTP or HTTPS for an Application
367
- # Load Balancer or TCP for a Network Load Balancer.
368
+ # Load Balancer. The protocol of the target group must be TCP or TLS for
369
+ # a Network Load Balancer.
368
370
  #
369
- # \[HTTPS listener\] If the action type is `authenticate-oidc`, you
371
+ # \[HTTPS listeners\] If the action type is `authenticate-oidc`, you
370
372
  # authenticate users through an identity provider that is OpenID Connect
371
373
  # (OIDC) compliant.
372
374
  #
373
- # \[HTTPS listener\] If the action type is `authenticate-cognito`, you
375
+ # \[HTTPS listeners\] If the action type is `authenticate-cognito`, you
374
376
  # authenticate users through the user pools supported by Amazon Cognito.
375
377
  #
376
378
  # \[Application Load Balancer\] If the action type is `redirect`, you
@@ -472,7 +474,7 @@ module Aws::ElasticLoadBalancingV2
472
474
  #
473
475
  # resp = client.create_listener({
474
476
  # load_balancer_arn: "LoadBalancerArn", # required
475
- # protocol: "HTTP", # required, accepts HTTP, HTTPS, TCP
477
+ # protocol: "HTTP", # required, accepts HTTP, HTTPS, TCP, TLS
476
478
  # port: 1, # required
477
479
  # ssl_policy: "SslPolicyName",
478
480
  # certificates: [
@@ -536,7 +538,7 @@ module Aws::ElasticLoadBalancingV2
536
538
  # resp.listeners[0].listener_arn #=> String
537
539
  # resp.listeners[0].load_balancer_arn #=> String
538
540
  # resp.listeners[0].port #=> Integer
539
- # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
541
+ # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
540
542
  # resp.listeners[0].certificates #=> Array
541
543
  # resp.listeners[0].certificates[0].certificate_arn #=> String
542
544
  # resp.listeners[0].certificates[0].is_default #=> Boolean
@@ -889,13 +891,14 @@ module Aws::ElasticLoadBalancingV2
889
891
  #
890
892
  # If the action type is `forward`, you specify a target group. The
891
893
  # protocol of the target group must be HTTP or HTTPS for an Application
892
- # Load Balancer or TCP for a Network Load Balancer.
894
+ # Load Balancer. The protocol of the target group must be TCP or TLS for
895
+ # a Network Load Balancer.
893
896
  #
894
- # \[HTTPS listener\] If the action type is `authenticate-oidc`, you
897
+ # \[HTTPS listeners\] If the action type is `authenticate-oidc`, you
895
898
  # authenticate users through an identity provider that is OpenID Connect
896
899
  # (OIDC) compliant.
897
900
  #
898
- # \[HTTPS listener\] If the action type is `authenticate-cognito`, you
901
+ # \[HTTPS listeners\] If the action type is `authenticate-cognito`, you
899
902
  # authenticate users through the user pools supported by Amazon Cognito.
900
903
  #
901
904
  # \[Application Load Balancer\] If the action type is `redirect`, you
@@ -1108,8 +1111,9 @@ module Aws::ElasticLoadBalancingV2
1108
1111
  # @option params [String] :protocol
1109
1112
  # The protocol to use for routing traffic to the targets. For
1110
1113
  # Application Load Balancers, the supported protocols are HTTP and
1111
- # HTTPS. For Network Load Balancers, the supported protocol is TCP. If
1112
- # the target is a Lambda function, this parameter does not apply.
1114
+ # HTTPS. For Network Load Balancers, the supported protocols are TCP and
1115
+ # TLS. If the target is a Lambda function, this parameter does not
1116
+ # apply.
1113
1117
  #
1114
1118
  # @option params [Integer] :port
1115
1119
  # The port on which the targets receive traffic. This port is used
@@ -1122,9 +1126,10 @@ module Aws::ElasticLoadBalancingV2
1122
1126
  #
1123
1127
  # @option params [String] :health_check_protocol
1124
1128
  # The protocol the load balancer uses when performing health checks on
1125
- # targets. The TCP protocol is supported only if the protocol of the
1126
- # target group is TCP. For Application Load Balancers, the default is
1127
- # HTTP. For Network Load Balancers, the default is TCP.
1129
+ # targets. For Application Load Balancers, the default is HTTP. For
1130
+ # Network Load Balancers, the default is TCP. The TCP protocol is
1131
+ # supported for health checks only if the protocol of the target group
1132
+ # is TCP or TLS. The TLS protocol is not supported for health checks.
1128
1133
  #
1129
1134
  # @option params [String] :health_check_port
1130
1135
  # The port the load balancer uses when performing health checks on
@@ -1232,10 +1237,10 @@ module Aws::ElasticLoadBalancingV2
1232
1237
  #
1233
1238
  # resp = client.create_target_group({
1234
1239
  # name: "TargetGroupName", # required
1235
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP
1240
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS
1236
1241
  # port: 1,
1237
1242
  # vpc_id: "VpcId",
1238
- # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP
1243
+ # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS
1239
1244
  # health_check_port: "HealthCheckPort",
1240
1245
  # health_check_enabled: false,
1241
1246
  # health_check_path: "Path",
@@ -1254,10 +1259,10 @@ module Aws::ElasticLoadBalancingV2
1254
1259
  # resp.target_groups #=> Array
1255
1260
  # resp.target_groups[0].target_group_arn #=> String
1256
1261
  # resp.target_groups[0].target_group_name #=> String
1257
- # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
1262
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
1258
1263
  # resp.target_groups[0].port #=> Integer
1259
1264
  # resp.target_groups[0].vpc_id #=> String
1260
- # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
1265
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
1261
1266
  # resp.target_groups[0].health_check_port #=> String
1262
1267
  # resp.target_groups[0].health_check_enabled #=> Boolean
1263
1268
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -1516,7 +1521,7 @@ module Aws::ElasticLoadBalancingV2
1516
1521
  req.send_request(options)
1517
1522
  end
1518
1523
 
1519
- # Describes the certificates for the specified secure listener.
1524
+ # Describes the certificates for the specified HTTPS listener.
1520
1525
  #
1521
1526
  # @option params [required, String] :listener_arn
1522
1527
  # The Amazon Resource Names (ARN) of the listener.
@@ -1623,7 +1628,7 @@ module Aws::ElasticLoadBalancingV2
1623
1628
  # resp.listeners[0].listener_arn #=> String
1624
1629
  # resp.listeners[0].load_balancer_arn #=> String
1625
1630
  # resp.listeners[0].port #=> Integer
1626
- # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
1631
+ # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
1627
1632
  # resp.listeners[0].certificates #=> Array
1628
1633
  # resp.listeners[0].certificates[0].certificate_arn #=> String
1629
1634
  # resp.listeners[0].certificates[0].is_default #=> Boolean
@@ -2352,10 +2357,10 @@ module Aws::ElasticLoadBalancingV2
2352
2357
  # resp.target_groups #=> Array
2353
2358
  # resp.target_groups[0].target_group_arn #=> String
2354
2359
  # resp.target_groups[0].target_group_name #=> String
2355
- # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
2360
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
2356
2361
  # resp.target_groups[0].port #=> Integer
2357
2362
  # resp.target_groups[0].vpc_id #=> String
2358
- # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
2363
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
2359
2364
  # resp.target_groups[0].health_check_port #=> String
2360
2365
  # resp.target_groups[0].health_check_enabled #=> Boolean
2361
2366
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -2493,10 +2498,10 @@ module Aws::ElasticLoadBalancingV2
2493
2498
  # Modifies the specified properties of the specified listener.
2494
2499
  #
2495
2500
  # Any properties that you do not specify retain their current values.
2496
- # However, changing the protocol from HTTPS to HTTP removes the security
2497
- # policy and SSL certificate properties. If you change the protocol from
2498
- # HTTP to HTTPS, you must add the security policy and server
2499
- # certificate.
2501
+ # However, changing the protocol from HTTPS to HTTP, or from TLS to TCP,
2502
+ # removes the security policy and server certificate properties. If you
2503
+ # change the protocol from HTTP to HTTPS, or from TCP to TLS, you must
2504
+ # add the security policy and server certificate properties.
2500
2505
  #
2501
2506
  # @option params [required, String] :listener_arn
2502
2507
  # The Amazon Resource Name (ARN) of the listener.
@@ -2506,21 +2511,21 @@ module Aws::ElasticLoadBalancingV2
2506
2511
  #
2507
2512
  # @option params [String] :protocol
2508
2513
  # The protocol for connections from clients to the load balancer.
2509
- # Application Load Balancers support HTTP and HTTPS and Network Load
2510
- # Balancers support TCP.
2514
+ # Application Load Balancers support the HTTP and HTTPS protocols.
2515
+ # Network Load Balancers support the TCP and TLS protocols.
2511
2516
  #
2512
2517
  # @option params [String] :ssl_policy
2513
- # \[HTTPS listeners\] The security policy that defines which protocols
2514
- # and ciphers are supported. For more information, see [Security
2515
- # Policies][1] in the *Application Load Balancers Guide*.
2518
+ # \[HTTPS and TLS listeners\] The security policy that defines which
2519
+ # protocols and ciphers are supported. For more information, see
2520
+ # [Security Policies][1] in the *Application Load Balancers Guide*.
2516
2521
  #
2517
2522
  #
2518
2523
  #
2519
2524
  # [1]: http://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html#describe-ssl-policies
2520
2525
  #
2521
2526
  # @option params [Array<Types::Certificate>] :certificates
2522
- # \[HTTPS listeners\] The default SSL server certificate. You must
2523
- # provide exactly one certificate. Set `CertificateArn` to the
2527
+ # \[HTTPS and TLS listeners\] The default SSL server certificate. You
2528
+ # must provide exactly one certificate. Set `CertificateArn` to the
2524
2529
  # certificate ARN but do not set `IsDefault`.
2525
2530
  #
2526
2531
  # To create a certificate list, use AddListenerCertificates.
@@ -2531,13 +2536,14 @@ module Aws::ElasticLoadBalancingV2
2531
2536
  #
2532
2537
  # If the action type is `forward`, you specify a target group. The
2533
2538
  # protocol of the target group must be HTTP or HTTPS for an Application
2534
- # Load Balancer or TCP for a Network Load Balancer.
2539
+ # Load Balancer. The protocol of the target group must be TCP or TLS for
2540
+ # a Network Load Balancer.
2535
2541
  #
2536
- # \[HTTPS listener\] If the action type is `authenticate-oidc`, you
2542
+ # \[HTTPS listeners\] If the action type is `authenticate-oidc`, you
2537
2543
  # authenticate users through an identity provider that is OpenID Connect
2538
2544
  # (OIDC) compliant.
2539
2545
  #
2540
- # \[HTTPS listener\] If the action type is `authenticate-cognito`, you
2546
+ # \[HTTPS listeners\] If the action type is `authenticate-cognito`, you
2541
2547
  # authenticate users through the user pools supported by Amazon Cognito.
2542
2548
  #
2543
2549
  # \[Application Load Balancer\] If the action type is `redirect`, you
@@ -2625,7 +2631,7 @@ module Aws::ElasticLoadBalancingV2
2625
2631
  # resp = client.modify_listener({
2626
2632
  # listener_arn: "ListenerArn", # required
2627
2633
  # port: 1,
2628
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP
2634
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS
2629
2635
  # ssl_policy: "SslPolicyName",
2630
2636
  # certificates: [
2631
2637
  # {
@@ -2688,7 +2694,7 @@ module Aws::ElasticLoadBalancingV2
2688
2694
  # resp.listeners[0].listener_arn #=> String
2689
2695
  # resp.listeners[0].load_balancer_arn #=> String
2690
2696
  # resp.listeners[0].port #=> Integer
2691
- # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
2697
+ # resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
2692
2698
  # resp.listeners[0].certificates #=> Array
2693
2699
  # resp.listeners[0].certificates[0].certificate_arn #=> String
2694
2700
  # resp.listeners[0].certificates[0].is_default #=> Boolean
@@ -2958,13 +2964,14 @@ module Aws::ElasticLoadBalancingV2
2958
2964
  #
2959
2965
  # If the action type is `forward`, you specify a target group. The
2960
2966
  # protocol of the target group must be HTTP or HTTPS for an Application
2961
- # Load Balancer or TCP for a Network Load Balancer.
2967
+ # Load Balancer. The protocol of the target group must be TCP or TLS for
2968
+ # a Network Load Balancer.
2962
2969
  #
2963
- # \[HTTPS listener\] If the action type is `authenticate-oidc`, you
2970
+ # \[HTTPS listeners\] If the action type is `authenticate-oidc`, you
2964
2971
  # authenticate users through an identity provider that is OpenID Connect
2965
2972
  # (OIDC) compliant.
2966
2973
  #
2967
- # \[HTTPS listener\] If the action type is `authenticate-cognito`, you
2974
+ # \[HTTPS listeners\] If the action type is `authenticate-cognito`, you
2968
2975
  # authenticate users through the user pools supported by Amazon Cognito.
2969
2976
  #
2970
2977
  # \[Application Load Balancer\] If the action type is `redirect`, you
@@ -3142,8 +3149,9 @@ module Aws::ElasticLoadBalancingV2
3142
3149
  #
3143
3150
  # @option params [String] :health_check_protocol
3144
3151
  # The protocol the load balancer uses when performing health checks on
3145
- # targets. The TCP protocol is supported only if the protocol of the
3146
- # target group is TCP.
3152
+ # targets. The TCP protocol is supported for health checks only if the
3153
+ # protocol of the target group is TCP or TLS. The TLS protocol is not
3154
+ # supported for health checks.
3147
3155
  #
3148
3156
  # If the protocol of the target group is TCP, you can't modify this
3149
3157
  # setting.
@@ -3236,7 +3244,7 @@ module Aws::ElasticLoadBalancingV2
3236
3244
  #
3237
3245
  # resp = client.modify_target_group({
3238
3246
  # target_group_arn: "TargetGroupArn", # required
3239
- # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP
3247
+ # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS
3240
3248
  # health_check_port: "HealthCheckPort",
3241
3249
  # health_check_path: "Path",
3242
3250
  # health_check_enabled: false,
@@ -3254,10 +3262,10 @@ module Aws::ElasticLoadBalancingV2
3254
3262
  # resp.target_groups #=> Array
3255
3263
  # resp.target_groups[0].target_group_arn #=> String
3256
3264
  # resp.target_groups[0].target_group_name #=> String
3257
- # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP"
3265
+ # resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
3258
3266
  # resp.target_groups[0].port #=> Integer
3259
3267
  # resp.target_groups[0].vpc_id #=> String
3260
- # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP"
3268
+ # resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS"
3261
3269
  # resp.target_groups[0].health_check_port #=> String
3262
3270
  # resp.target_groups[0].health_check_enabled #=> Boolean
3263
3271
  # resp.target_groups[0].health_check_interval_seconds #=> Integer
@@ -3443,7 +3451,7 @@ module Aws::ElasticLoadBalancingV2
3443
3451
  req.send_request(options)
3444
3452
  end
3445
3453
 
3446
- # Removes the specified certificate from the specified secure listener.
3454
+ # Removes the specified certificate from the specified HTTPS listener.
3447
3455
  #
3448
3456
  # You can't remove the default certificate for a listener. To replace
3449
3457
  # the default certificate, call ModifyListener.
@@ -3832,7 +3840,7 @@ module Aws::ElasticLoadBalancingV2
3832
3840
  params: params,
3833
3841
  config: config)
3834
3842
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
3835
- context[:gem_version] = '1.19.0'
3843
+ context[:gem_version] = '1.20.0'
3836
3844
  Seahorse::Client::Request.new(handlers, context)
3837
3845
  end
3838
3846
 
@@ -71,13 +71,13 @@ module Aws::ElasticLoadBalancingV2
71
71
  # @return [String]
72
72
  #
73
73
  # @!attribute [rw] authenticate_oidc_config
74
- # \[HTTPS listener\] Information about an identity provider that is
74
+ # \[HTTPS listeners\] Information about an identity provider that is
75
75
  # compliant with OpenID Connect (OIDC). Specify only when `Type` is
76
76
  # `authenticate-oidc`.
77
77
  # @return [Types::AuthenticateOidcActionConfig]
78
78
  #
79
79
  # @!attribute [rw] authenticate_cognito_config
80
- # \[HTTPS listener\] Information for using Amazon Cognito to
80
+ # \[HTTPS listeners\] Information for using Amazon Cognito to
81
81
  # authenticate users. Specify only when `Type` is
82
82
  # `authenticate-cognito`.
83
83
  # @return [Types::AuthenticateCognitoActionConfig]
@@ -444,7 +444,7 @@ module Aws::ElasticLoadBalancingV2
444
444
  #
445
445
  # {
446
446
  # load_balancer_arn: "LoadBalancerArn", # required
447
- # protocol: "HTTP", # required, accepts HTTP, HTTPS, TCP
447
+ # protocol: "HTTP", # required, accepts HTTP, HTTPS, TCP, TLS
448
448
  # port: 1, # required
449
449
  # ssl_policy: "SslPolicyName",
450
450
  # certificates: [
@@ -509,7 +509,8 @@ module Aws::ElasticLoadBalancingV2
509
509
  # @!attribute [rw] protocol
510
510
  # The protocol for connections from clients to the load balancer. For
511
511
  # Application Load Balancers, the supported protocols are HTTP and
512
- # HTTPS. For Network Load Balancers, the supported protocol is TCP.
512
+ # HTTPS. For Network Load Balancers, the supported protocols are TCP
513
+ # and TLS.
513
514
  # @return [String]
514
515
  #
515
516
  # @!attribute [rw] port
@@ -517,14 +518,14 @@ module Aws::ElasticLoadBalancingV2
517
518
  # @return [Integer]
518
519
  #
519
520
  # @!attribute [rw] ssl_policy
520
- # \[HTTPS listeners\] The security policy that defines which ciphers
521
- # and protocols are supported. The default is the current predefined
522
- # security policy.
521
+ # \[HTTPS and TLS listeners\] The security policy that defines which
522
+ # ciphers and protocols are supported. The default is the current
523
+ # predefined security policy.
523
524
  # @return [String]
524
525
  #
525
526
  # @!attribute [rw] certificates
526
- # \[HTTPS listeners\] The default SSL server certificate. You must
527
- # provide exactly one certificate. Set `CertificateArn` to the
527
+ # \[HTTPS and TLS listeners\] The default SSL server certificate. You
528
+ # must provide exactly one certificate. Set `CertificateArn` to the
528
529
  # certificate ARN but do not set `IsDefault`.
529
530
  #
530
531
  # To create a certificate list, use AddListenerCertificates.
@@ -536,14 +537,15 @@ module Aws::ElasticLoadBalancingV2
536
537
  #
537
538
  # If the action type is `forward`, you specify a target group. The
538
539
  # protocol of the target group must be HTTP or HTTPS for an
539
- # Application Load Balancer or TCP for a Network Load Balancer.
540
+ # Application Load Balancer. The protocol of the target group must be
541
+ # TCP or TLS for a Network Load Balancer.
540
542
  #
541
- # \[HTTPS listener\] If the action type is `authenticate-oidc`, you
543
+ # \[HTTPS listeners\] If the action type is `authenticate-oidc`, you
542
544
  # authenticate users through an identity provider that is OpenID
543
545
  # Connect (OIDC) compliant.
544
546
  #
545
- # \[HTTPS listener\] If the action type is `authenticate-cognito`, you
546
- # authenticate users through the user pools supported by Amazon
547
+ # \[HTTPS listeners\] If the action type is `authenticate-cognito`,
548
+ # you authenticate users through the user pools supported by Amazon
547
549
  # Cognito.
548
550
  #
549
551
  # \[Application Load Balancer\] If the action type is `redirect`, you
@@ -807,14 +809,15 @@ module Aws::ElasticLoadBalancingV2
807
809
  #
808
810
  # If the action type is `forward`, you specify a target group. The
809
811
  # protocol of the target group must be HTTP or HTTPS for an
810
- # Application Load Balancer or TCP for a Network Load Balancer.
812
+ # Application Load Balancer. The protocol of the target group must be
813
+ # TCP or TLS for a Network Load Balancer.
811
814
  #
812
- # \[HTTPS listener\] If the action type is `authenticate-oidc`, you
815
+ # \[HTTPS listeners\] If the action type is `authenticate-oidc`, you
813
816
  # authenticate users through an identity provider that is OpenID
814
817
  # Connect (OIDC) compliant.
815
818
  #
816
- # \[HTTPS listener\] If the action type is `authenticate-cognito`, you
817
- # authenticate users through the user pools supported by Amazon
819
+ # \[HTTPS listeners\] If the action type is `authenticate-cognito`,
820
+ # you authenticate users through the user pools supported by Amazon
818
821
  # Cognito.
819
822
  #
820
823
  # \[Application Load Balancer\] If the action type is `redirect`, you
@@ -851,10 +854,10 @@ module Aws::ElasticLoadBalancingV2
851
854
  #
852
855
  # {
853
856
  # name: "TargetGroupName", # required
854
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP
857
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS
855
858
  # port: 1,
856
859
  # vpc_id: "VpcId",
857
- # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP
860
+ # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS
858
861
  # health_check_port: "HealthCheckPort",
859
862
  # health_check_enabled: false,
860
863
  # health_check_path: "Path",
@@ -879,8 +882,9 @@ module Aws::ElasticLoadBalancingV2
879
882
  # @!attribute [rw] protocol
880
883
  # The protocol to use for routing traffic to the targets. For
881
884
  # Application Load Balancers, the supported protocols are HTTP and
882
- # HTTPS. For Network Load Balancers, the supported protocol is TCP. If
883
- # the target is a Lambda function, this parameter does not apply.
885
+ # HTTPS. For Network Load Balancers, the supported protocols are TCP
886
+ # and TLS. If the target is a Lambda function, this parameter does not
887
+ # apply.
884
888
  # @return [String]
885
889
  #
886
890
  # @!attribute [rw] port
@@ -896,9 +900,10 @@ module Aws::ElasticLoadBalancingV2
896
900
  #
897
901
  # @!attribute [rw] health_check_protocol
898
902
  # The protocol the load balancer uses when performing health checks on
899
- # targets. The TCP protocol is supported only if the protocol of the
900
- # target group is TCP. For Application Load Balancers, the default is
901
- # HTTP. For Network Load Balancers, the default is TCP.
903
+ # targets. For Application Load Balancers, the default is HTTP. For
904
+ # Network Load Balancers, the default is TCP. The TCP protocol is
905
+ # supported for health checks only if the protocol of the target group
906
+ # is TCP or TLS. The TLS protocol is not supported for health checks.
902
907
  # @return [String]
903
908
  #
904
909
  # @!attribute [rw] health_check_port
@@ -1708,7 +1713,7 @@ module Aws::ElasticLoadBalancingV2
1708
1713
  #
1709
1714
  # @!attribute [rw] certificates
1710
1715
  # The SSL server certificate. You must provide a certificate if the
1711
- # protocol is HTTPS.
1716
+ # protocol is HTTPS or TLS.
1712
1717
  # @return [Array<Types::Certificate>]
1713
1718
  #
1714
1719
  # @!attribute [rw] ssl_policy
@@ -1954,7 +1959,7 @@ module Aws::ElasticLoadBalancingV2
1954
1959
  # {
1955
1960
  # listener_arn: "ListenerArn", # required
1956
1961
  # port: 1,
1957
- # protocol: "HTTP", # accepts HTTP, HTTPS, TCP
1962
+ # protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS
1958
1963
  # ssl_policy: "SslPolicyName",
1959
1964
  # certificates: [
1960
1965
  # {
@@ -2021,14 +2026,14 @@ module Aws::ElasticLoadBalancingV2
2021
2026
  #
2022
2027
  # @!attribute [rw] protocol
2023
2028
  # The protocol for connections from clients to the load balancer.
2024
- # Application Load Balancers support HTTP and HTTPS and Network Load
2025
- # Balancers support TCP.
2029
+ # Application Load Balancers support the HTTP and HTTPS protocols.
2030
+ # Network Load Balancers support the TCP and TLS protocols.
2026
2031
  # @return [String]
2027
2032
  #
2028
2033
  # @!attribute [rw] ssl_policy
2029
- # \[HTTPS listeners\] The security policy that defines which protocols
2030
- # and ciphers are supported. For more information, see [Security
2031
- # Policies][1] in the *Application Load Balancers Guide*.
2034
+ # \[HTTPS and TLS listeners\] The security policy that defines which
2035
+ # protocols and ciphers are supported. For more information, see
2036
+ # [Security Policies][1] in the *Application Load Balancers Guide*.
2032
2037
  #
2033
2038
  #
2034
2039
  #
@@ -2036,8 +2041,8 @@ module Aws::ElasticLoadBalancingV2
2036
2041
  # @return [String]
2037
2042
  #
2038
2043
  # @!attribute [rw] certificates
2039
- # \[HTTPS listeners\] The default SSL server certificate. You must
2040
- # provide exactly one certificate. Set `CertificateArn` to the
2044
+ # \[HTTPS and TLS listeners\] The default SSL server certificate. You
2045
+ # must provide exactly one certificate. Set `CertificateArn` to the
2041
2046
  # certificate ARN but do not set `IsDefault`.
2042
2047
  #
2043
2048
  # To create a certificate list, use AddListenerCertificates.
@@ -2049,14 +2054,15 @@ module Aws::ElasticLoadBalancingV2
2049
2054
  #
2050
2055
  # If the action type is `forward`, you specify a target group. The
2051
2056
  # protocol of the target group must be HTTP or HTTPS for an
2052
- # Application Load Balancer or TCP for a Network Load Balancer.
2057
+ # Application Load Balancer. The protocol of the target group must be
2058
+ # TCP or TLS for a Network Load Balancer.
2053
2059
  #
2054
- # \[HTTPS listener\] If the action type is `authenticate-oidc`, you
2060
+ # \[HTTPS listeners\] If the action type is `authenticate-oidc`, you
2055
2061
  # authenticate users through an identity provider that is OpenID
2056
2062
  # Connect (OIDC) compliant.
2057
2063
  #
2058
- # \[HTTPS listener\] If the action type is `authenticate-cognito`, you
2059
- # authenticate users through the user pools supported by Amazon
2064
+ # \[HTTPS listeners\] If the action type is `authenticate-cognito`,
2065
+ # you authenticate users through the user pools supported by Amazon
2060
2066
  # Cognito.
2061
2067
  #
2062
2068
  # \[Application Load Balancer\] If the action type is `redirect`, you
@@ -2233,14 +2239,15 @@ module Aws::ElasticLoadBalancingV2
2233
2239
  #
2234
2240
  # If the action type is `forward`, you specify a target group. The
2235
2241
  # protocol of the target group must be HTTP or HTTPS for an
2236
- # Application Load Balancer or TCP for a Network Load Balancer.
2242
+ # Application Load Balancer. The protocol of the target group must be
2243
+ # TCP or TLS for a Network Load Balancer.
2237
2244
  #
2238
- # \[HTTPS listener\] If the action type is `authenticate-oidc`, you
2245
+ # \[HTTPS listeners\] If the action type is `authenticate-oidc`, you
2239
2246
  # authenticate users through an identity provider that is OpenID
2240
2247
  # Connect (OIDC) compliant.
2241
2248
  #
2242
- # \[HTTPS listener\] If the action type is `authenticate-cognito`, you
2243
- # authenticate users through the user pools supported by Amazon
2249
+ # \[HTTPS listeners\] If the action type is `authenticate-cognito`,
2250
+ # you authenticate users through the user pools supported by Amazon
2244
2251
  # Cognito.
2245
2252
  #
2246
2253
  # \[Application Load Balancer\] If the action type is `redirect`, you
@@ -2316,7 +2323,7 @@ module Aws::ElasticLoadBalancingV2
2316
2323
  #
2317
2324
  # {
2318
2325
  # target_group_arn: "TargetGroupArn", # required
2319
- # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP
2326
+ # health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS
2320
2327
  # health_check_port: "HealthCheckPort",
2321
2328
  # health_check_path: "Path",
2322
2329
  # health_check_enabled: false,
@@ -2335,8 +2342,9 @@ module Aws::ElasticLoadBalancingV2
2335
2342
  #
2336
2343
  # @!attribute [rw] health_check_protocol
2337
2344
  # The protocol the load balancer uses when performing health checks on
2338
- # targets. The TCP protocol is supported only if the protocol of the
2339
- # target group is TCP.
2345
+ # targets. The TCP protocol is supported for health checks only if the
2346
+ # protocol of the target group is TCP or TLS. The TLS protocol is not
2347
+ # supported for health checks.
2340
2348
  #
2341
2349
  # If the protocol of the target group is TCP, you can't modify this
2342
2350
  # setting.
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.19.0
4
+ version: 1.20.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: 2018-12-06 00:00:00.000000000 Z
11
+ date: 2019-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core