aws-sdk-elasticloadbalancingv2 1.141.0 → 1.143.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +126 -28
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +26 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +102 -24
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- data/sig/client.rbs +63 -14
- data/sig/types.rbs +25 -9
- data/sig/waiters.rbs +4 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0e653e9ca920908ce2762279958585493bc9bf837a4ceab611d39dfc60d0779
|
|
4
|
+
data.tar.gz: f9bbebba9b5b801e8d1e9231052898d028f7c3b6e6daa24c32ac87a6c6d4dccd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 595cff92d88c68f18b8516236022cd927d4ac6046e3e8b22f5e559bfb2656dfca900d5153084fd7d0845a77df71fc304e59bfc66254eeed82e91b475e1e14930
|
|
7
|
+
data.tar.gz: 00f0ab0d768c052b9ee4d5632bd31e6a4dc6e0895415a576b1dd4658733c91c1a0751b62b6126e0ce2c55268882f2154dfd2d8070bf8584fb81715c78e5d98a1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.143.0 (2025-11-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - QUIC and TCP_QUIC protocol support for Network Load Balancer (NLB). This capability enables customers to forward QUIC traffic to their targets with ultra-low latency while maintaining session stickiness using QUIC Connection IDs.
|
|
8
|
+
|
|
9
|
+
1.142.0 (2025-11-12)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release expands ALB Authentication to support JWT verification and adds support for a new JWT validation action in listener rule.
|
|
13
|
+
|
|
4
14
|
1.141.0 (2025-10-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.143.0
|
|
@@ -809,7 +809,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
809
809
|
#
|
|
810
810
|
# resp = client.create_listener({
|
|
811
811
|
# load_balancer_arn: "LoadBalancerArn", # required
|
|
812
|
-
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
|
812
|
+
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
|
|
813
813
|
# port: 1,
|
|
814
814
|
# ssl_policy: "SslPolicyName",
|
|
815
815
|
# certificates: [
|
|
@@ -820,7 +820,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
820
820
|
# ],
|
|
821
821
|
# default_actions: [ # required
|
|
822
822
|
# {
|
|
823
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
|
823
|
+
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response, jwt-validation
|
|
824
824
|
# target_group_arn: "TargetGroupArn",
|
|
825
825
|
# authenticate_oidc_config: {
|
|
826
826
|
# issuer: "AuthenticateOidcActionIssuer", # required
|
|
@@ -876,6 +876,17 @@ module Aws::ElasticLoadBalancingV2
|
|
|
876
876
|
# duration_seconds: 1,
|
|
877
877
|
# },
|
|
878
878
|
# },
|
|
879
|
+
# jwt_validation_config: {
|
|
880
|
+
# jwks_endpoint: "JwtValidationActionJwksEndpoint", # required
|
|
881
|
+
# issuer: "JwtValidationActionIssuer", # required
|
|
882
|
+
# additional_claims: [
|
|
883
|
+
# {
|
|
884
|
+
# format: "single-string", # required, accepts single-string, string-array, space-separated-values
|
|
885
|
+
# name: "JwtValidationActionAdditionalClaimName", # required
|
|
886
|
+
# values: ["JwtValidationActionAdditionalClaimValue"], # required
|
|
887
|
+
# },
|
|
888
|
+
# ],
|
|
889
|
+
# },
|
|
879
890
|
# },
|
|
880
891
|
# ],
|
|
881
892
|
# alpn_policy: ["AlpnPolicyValue"],
|
|
@@ -900,13 +911,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
900
911
|
# resp.listeners[0].listener_arn #=> String
|
|
901
912
|
# resp.listeners[0].load_balancer_arn #=> String
|
|
902
913
|
# resp.listeners[0].port #=> Integer
|
|
903
|
-
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
914
|
+
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
904
915
|
# resp.listeners[0].certificates #=> Array
|
|
905
916
|
# resp.listeners[0].certificates[0].certificate_arn #=> String
|
|
906
917
|
# resp.listeners[0].certificates[0].is_default #=> Boolean
|
|
907
918
|
# resp.listeners[0].ssl_policy #=> String
|
|
908
919
|
# resp.listeners[0].default_actions #=> Array
|
|
909
|
-
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
|
920
|
+
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response", "jwt-validation"
|
|
910
921
|
# resp.listeners[0].default_actions[0].target_group_arn #=> String
|
|
911
922
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.issuer #=> String
|
|
912
923
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
|
@@ -945,6 +956,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
945
956
|
# resp.listeners[0].default_actions[0].forward_config.target_groups[0].weight #=> Integer
|
|
946
957
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.enabled #=> Boolean
|
|
947
958
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
|
959
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.jwks_endpoint #=> String
|
|
960
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.issuer #=> String
|
|
961
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims #=> Array
|
|
962
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].format #=> String, one of "single-string", "string-array", "space-separated-values"
|
|
963
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].name #=> String
|
|
964
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].values #=> Array
|
|
965
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].values[0] #=> String
|
|
948
966
|
# resp.listeners[0].alpn_policy #=> Array
|
|
949
967
|
# resp.listeners[0].alpn_policy[0] #=> String
|
|
950
968
|
# resp.listeners[0].mutual_authentication.mode #=> String
|
|
@@ -1386,7 +1404,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1386
1404
|
# priority: 1, # required
|
|
1387
1405
|
# actions: [ # required
|
|
1388
1406
|
# {
|
|
1389
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
|
1407
|
+
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response, jwt-validation
|
|
1390
1408
|
# target_group_arn: "TargetGroupArn",
|
|
1391
1409
|
# authenticate_oidc_config: {
|
|
1392
1410
|
# issuer: "AuthenticateOidcActionIssuer", # required
|
|
@@ -1442,6 +1460,17 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1442
1460
|
# duration_seconds: 1,
|
|
1443
1461
|
# },
|
|
1444
1462
|
# },
|
|
1463
|
+
# jwt_validation_config: {
|
|
1464
|
+
# jwks_endpoint: "JwtValidationActionJwksEndpoint", # required
|
|
1465
|
+
# issuer: "JwtValidationActionIssuer", # required
|
|
1466
|
+
# additional_claims: [
|
|
1467
|
+
# {
|
|
1468
|
+
# format: "single-string", # required, accepts single-string, string-array, space-separated-values
|
|
1469
|
+
# name: "JwtValidationActionAdditionalClaimName", # required
|
|
1470
|
+
# values: ["JwtValidationActionAdditionalClaimValue"], # required
|
|
1471
|
+
# },
|
|
1472
|
+
# ],
|
|
1473
|
+
# },
|
|
1445
1474
|
# },
|
|
1446
1475
|
# ],
|
|
1447
1476
|
# tags: [
|
|
@@ -1505,7 +1534,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1505
1534
|
# resp.rules[0].conditions[0].regex_values #=> Array
|
|
1506
1535
|
# resp.rules[0].conditions[0].regex_values[0] #=> String
|
|
1507
1536
|
# resp.rules[0].actions #=> Array
|
|
1508
|
-
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
|
1537
|
+
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response", "jwt-validation"
|
|
1509
1538
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
|
1510
1539
|
# resp.rules[0].actions[0].authenticate_oidc_config.issuer #=> String
|
|
1511
1540
|
# resp.rules[0].actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
|
@@ -1544,6 +1573,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1544
1573
|
# resp.rules[0].actions[0].forward_config.target_groups[0].weight #=> Integer
|
|
1545
1574
|
# resp.rules[0].actions[0].forward_config.target_group_stickiness_config.enabled #=> Boolean
|
|
1546
1575
|
# resp.rules[0].actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
|
1576
|
+
# resp.rules[0].actions[0].jwt_validation_config.jwks_endpoint #=> String
|
|
1577
|
+
# resp.rules[0].actions[0].jwt_validation_config.issuer #=> String
|
|
1578
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims #=> Array
|
|
1579
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].format #=> String, one of "single-string", "string-array", "space-separated-values"
|
|
1580
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].name #=> String
|
|
1581
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].values #=> Array
|
|
1582
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].values[0] #=> String
|
|
1547
1583
|
# resp.rules[0].is_default #=> Boolean
|
|
1548
1584
|
# resp.rules[0].transforms #=> Array
|
|
1549
1585
|
# resp.rules[0].transforms[0].type #=> String, one of "host-header-rewrite", "url-rewrite"
|
|
@@ -1751,11 +1787,11 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1751
1787
|
#
|
|
1752
1788
|
# resp = client.create_target_group({
|
|
1753
1789
|
# name: "TargetGroupName", # required
|
|
1754
|
-
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
|
1790
|
+
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
|
|
1755
1791
|
# protocol_version: "ProtocolVersion",
|
|
1756
1792
|
# port: 1,
|
|
1757
1793
|
# vpc_id: "VpcId",
|
|
1758
|
-
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
|
1794
|
+
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
|
|
1759
1795
|
# health_check_port: "HealthCheckPort",
|
|
1760
1796
|
# health_check_enabled: false,
|
|
1761
1797
|
# health_check_path: "Path",
|
|
@@ -1782,10 +1818,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1782
1818
|
# resp.target_groups #=> Array
|
|
1783
1819
|
# resp.target_groups[0].target_group_arn #=> String
|
|
1784
1820
|
# resp.target_groups[0].target_group_name #=> String
|
|
1785
|
-
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
1821
|
+
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
1786
1822
|
# resp.target_groups[0].port #=> Integer
|
|
1787
1823
|
# resp.target_groups[0].vpc_id #=> String
|
|
1788
|
-
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
1824
|
+
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
1789
1825
|
# resp.target_groups[0].health_check_port #=> String
|
|
1790
1826
|
# resp.target_groups[0].health_check_enabled #=> Boolean
|
|
1791
1827
|
# resp.target_groups[0].health_check_interval_seconds #=> Integer
|
|
@@ -2142,6 +2178,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
2142
2178
|
# id: "TargetId", # required
|
|
2143
2179
|
# port: 1,
|
|
2144
2180
|
# availability_zone: "ZoneName",
|
|
2181
|
+
# quic_server_id: "QuicServerId",
|
|
2145
2182
|
# },
|
|
2146
2183
|
# ],
|
|
2147
2184
|
# })
|
|
@@ -2417,13 +2454,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
2417
2454
|
# resp.listeners[0].listener_arn #=> String
|
|
2418
2455
|
# resp.listeners[0].load_balancer_arn #=> String
|
|
2419
2456
|
# resp.listeners[0].port #=> Integer
|
|
2420
|
-
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
2457
|
+
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
2421
2458
|
# resp.listeners[0].certificates #=> Array
|
|
2422
2459
|
# resp.listeners[0].certificates[0].certificate_arn #=> String
|
|
2423
2460
|
# resp.listeners[0].certificates[0].is_default #=> Boolean
|
|
2424
2461
|
# resp.listeners[0].ssl_policy #=> String
|
|
2425
2462
|
# resp.listeners[0].default_actions #=> Array
|
|
2426
|
-
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
|
2463
|
+
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response", "jwt-validation"
|
|
2427
2464
|
# resp.listeners[0].default_actions[0].target_group_arn #=> String
|
|
2428
2465
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.issuer #=> String
|
|
2429
2466
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
|
@@ -2462,6 +2499,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
2462
2499
|
# resp.listeners[0].default_actions[0].forward_config.target_groups[0].weight #=> Integer
|
|
2463
2500
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.enabled #=> Boolean
|
|
2464
2501
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
|
2502
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.jwks_endpoint #=> String
|
|
2503
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.issuer #=> String
|
|
2504
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims #=> Array
|
|
2505
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].format #=> String, one of "single-string", "string-array", "space-separated-values"
|
|
2506
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].name #=> String
|
|
2507
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].values #=> Array
|
|
2508
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].values[0] #=> String
|
|
2465
2509
|
# resp.listeners[0].alpn_policy #=> Array
|
|
2466
2510
|
# resp.listeners[0].alpn_policy[0] #=> String
|
|
2467
2511
|
# resp.listeners[0].mutual_authentication.mode #=> String
|
|
@@ -2686,7 +2730,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
2686
2730
|
end
|
|
2687
2731
|
|
|
2688
2732
|
# Describes the specified rules or the rules for the specified listener.
|
|
2689
|
-
# You must specify either a listener or
|
|
2733
|
+
# You must specify either a listener or rules.
|
|
2690
2734
|
#
|
|
2691
2735
|
# @option params [String] :listener_arn
|
|
2692
2736
|
# The Amazon Resource Name (ARN) of the listener.
|
|
@@ -2785,7 +2829,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
2785
2829
|
# resp.rules[0].conditions[0].regex_values #=> Array
|
|
2786
2830
|
# resp.rules[0].conditions[0].regex_values[0] #=> String
|
|
2787
2831
|
# resp.rules[0].actions #=> Array
|
|
2788
|
-
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
|
2832
|
+
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response", "jwt-validation"
|
|
2789
2833
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
|
2790
2834
|
# resp.rules[0].actions[0].authenticate_oidc_config.issuer #=> String
|
|
2791
2835
|
# resp.rules[0].actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
|
@@ -2824,6 +2868,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
2824
2868
|
# resp.rules[0].actions[0].forward_config.target_groups[0].weight #=> Integer
|
|
2825
2869
|
# resp.rules[0].actions[0].forward_config.target_group_stickiness_config.enabled #=> Boolean
|
|
2826
2870
|
# resp.rules[0].actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
|
2871
|
+
# resp.rules[0].actions[0].jwt_validation_config.jwks_endpoint #=> String
|
|
2872
|
+
# resp.rules[0].actions[0].jwt_validation_config.issuer #=> String
|
|
2873
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims #=> Array
|
|
2874
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].format #=> String, one of "single-string", "string-array", "space-separated-values"
|
|
2875
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].name #=> String
|
|
2876
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].values #=> Array
|
|
2877
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].values[0] #=> String
|
|
2827
2878
|
# resp.rules[0].is_default #=> Boolean
|
|
2828
2879
|
# resp.rules[0].transforms #=> Array
|
|
2829
2880
|
# resp.rules[0].transforms[0].type #=> String, one of "host-header-rewrite", "url-rewrite"
|
|
@@ -3232,10 +3283,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3232
3283
|
# resp.target_groups #=> Array
|
|
3233
3284
|
# resp.target_groups[0].target_group_arn #=> String
|
|
3234
3285
|
# resp.target_groups[0].target_group_name #=> String
|
|
3235
|
-
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
3286
|
+
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
3236
3287
|
# resp.target_groups[0].port #=> Integer
|
|
3237
3288
|
# resp.target_groups[0].vpc_id #=> String
|
|
3238
|
-
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
3289
|
+
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
3239
3290
|
# resp.target_groups[0].health_check_port #=> String
|
|
3240
3291
|
# resp.target_groups[0].health_check_enabled #=> Boolean
|
|
3241
3292
|
# resp.target_groups[0].health_check_interval_seconds #=> Integer
|
|
@@ -3352,6 +3403,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3352
3403
|
# id: "TargetId", # required
|
|
3353
3404
|
# port: 1,
|
|
3354
3405
|
# availability_zone: "ZoneName",
|
|
3406
|
+
# quic_server_id: "QuicServerId",
|
|
3355
3407
|
# },
|
|
3356
3408
|
# ],
|
|
3357
3409
|
# include: ["AnomalyDetection"], # accepts AnomalyDetection, All
|
|
@@ -3363,6 +3415,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3363
3415
|
# resp.target_health_descriptions[0].target.id #=> String
|
|
3364
3416
|
# resp.target_health_descriptions[0].target.port #=> Integer
|
|
3365
3417
|
# resp.target_health_descriptions[0].target.availability_zone #=> String
|
|
3418
|
+
# resp.target_health_descriptions[0].target.quic_server_id #=> String
|
|
3366
3419
|
# resp.target_health_descriptions[0].health_check_port #=> String
|
|
3367
3420
|
# resp.target_health_descriptions[0].target_health.state #=> String, one of "initial", "healthy", "unhealthy", "unhealthy.draining", "unused", "draining", "unavailable"
|
|
3368
3421
|
# resp.target_health_descriptions[0].target_health.reason #=> String, one of "Elb.RegistrationInProgress", "Elb.InitialHealthChecking", "Target.ResponseCodeMismatch", "Target.Timeout", "Target.FailedHealthChecks", "Target.NotRegistered", "Target.NotInUse", "Target.DeregistrationInProgress", "Target.InvalidState", "Target.IpUnusable", "Target.HealthCheckDisabled", "Elb.InternalError"
|
|
@@ -3877,7 +3930,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3877
3930
|
# resp = client.modify_listener({
|
|
3878
3931
|
# listener_arn: "ListenerArn", # required
|
|
3879
3932
|
# port: 1,
|
|
3880
|
-
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
|
3933
|
+
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
|
|
3881
3934
|
# ssl_policy: "SslPolicyName",
|
|
3882
3935
|
# certificates: [
|
|
3883
3936
|
# {
|
|
@@ -3887,7 +3940,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3887
3940
|
# ],
|
|
3888
3941
|
# default_actions: [
|
|
3889
3942
|
# {
|
|
3890
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
|
3943
|
+
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response, jwt-validation
|
|
3891
3944
|
# target_group_arn: "TargetGroupArn",
|
|
3892
3945
|
# authenticate_oidc_config: {
|
|
3893
3946
|
# issuer: "AuthenticateOidcActionIssuer", # required
|
|
@@ -3943,6 +3996,17 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3943
3996
|
# duration_seconds: 1,
|
|
3944
3997
|
# },
|
|
3945
3998
|
# },
|
|
3999
|
+
# jwt_validation_config: {
|
|
4000
|
+
# jwks_endpoint: "JwtValidationActionJwksEndpoint", # required
|
|
4001
|
+
# issuer: "JwtValidationActionIssuer", # required
|
|
4002
|
+
# additional_claims: [
|
|
4003
|
+
# {
|
|
4004
|
+
# format: "single-string", # required, accepts single-string, string-array, space-separated-values
|
|
4005
|
+
# name: "JwtValidationActionAdditionalClaimName", # required
|
|
4006
|
+
# values: ["JwtValidationActionAdditionalClaimValue"], # required
|
|
4007
|
+
# },
|
|
4008
|
+
# ],
|
|
4009
|
+
# },
|
|
3946
4010
|
# },
|
|
3947
4011
|
# ],
|
|
3948
4012
|
# alpn_policy: ["AlpnPolicyValue"],
|
|
@@ -3961,13 +4025,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3961
4025
|
# resp.listeners[0].listener_arn #=> String
|
|
3962
4026
|
# resp.listeners[0].load_balancer_arn #=> String
|
|
3963
4027
|
# resp.listeners[0].port #=> Integer
|
|
3964
|
-
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
4028
|
+
# resp.listeners[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
3965
4029
|
# resp.listeners[0].certificates #=> Array
|
|
3966
4030
|
# resp.listeners[0].certificates[0].certificate_arn #=> String
|
|
3967
4031
|
# resp.listeners[0].certificates[0].is_default #=> Boolean
|
|
3968
4032
|
# resp.listeners[0].ssl_policy #=> String
|
|
3969
4033
|
# resp.listeners[0].default_actions #=> Array
|
|
3970
|
-
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
|
4034
|
+
# resp.listeners[0].default_actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response", "jwt-validation"
|
|
3971
4035
|
# resp.listeners[0].default_actions[0].target_group_arn #=> String
|
|
3972
4036
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.issuer #=> String
|
|
3973
4037
|
# resp.listeners[0].default_actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
|
@@ -4006,6 +4070,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4006
4070
|
# resp.listeners[0].default_actions[0].forward_config.target_groups[0].weight #=> Integer
|
|
4007
4071
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.enabled #=> Boolean
|
|
4008
4072
|
# resp.listeners[0].default_actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
|
4073
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.jwks_endpoint #=> String
|
|
4074
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.issuer #=> String
|
|
4075
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims #=> Array
|
|
4076
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].format #=> String, one of "single-string", "string-array", "space-separated-values"
|
|
4077
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].name #=> String
|
|
4078
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].values #=> Array
|
|
4079
|
+
# resp.listeners[0].default_actions[0].jwt_validation_config.additional_claims[0].values[0] #=> String
|
|
4009
4080
|
# resp.listeners[0].alpn_policy #=> Array
|
|
4010
4081
|
# resp.listeners[0].alpn_policy[0] #=> String
|
|
4011
4082
|
# resp.listeners[0].mutual_authentication.mode #=> String
|
|
@@ -4348,7 +4419,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4348
4419
|
# ],
|
|
4349
4420
|
# actions: [
|
|
4350
4421
|
# {
|
|
4351
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
|
4422
|
+
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response, jwt-validation
|
|
4352
4423
|
# target_group_arn: "TargetGroupArn",
|
|
4353
4424
|
# authenticate_oidc_config: {
|
|
4354
4425
|
# issuer: "AuthenticateOidcActionIssuer", # required
|
|
@@ -4404,6 +4475,17 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4404
4475
|
# duration_seconds: 1,
|
|
4405
4476
|
# },
|
|
4406
4477
|
# },
|
|
4478
|
+
# jwt_validation_config: {
|
|
4479
|
+
# jwks_endpoint: "JwtValidationActionJwksEndpoint", # required
|
|
4480
|
+
# issuer: "JwtValidationActionIssuer", # required
|
|
4481
|
+
# additional_claims: [
|
|
4482
|
+
# {
|
|
4483
|
+
# format: "single-string", # required, accepts single-string, string-array, space-separated-values
|
|
4484
|
+
# name: "JwtValidationActionAdditionalClaimName", # required
|
|
4485
|
+
# values: ["JwtValidationActionAdditionalClaimValue"], # required
|
|
4486
|
+
# },
|
|
4487
|
+
# ],
|
|
4488
|
+
# },
|
|
4407
4489
|
# },
|
|
4408
4490
|
# ],
|
|
4409
4491
|
# transforms: [
|
|
@@ -4462,7 +4544,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4462
4544
|
# resp.rules[0].conditions[0].regex_values #=> Array
|
|
4463
4545
|
# resp.rules[0].conditions[0].regex_values[0] #=> String
|
|
4464
4546
|
# resp.rules[0].actions #=> Array
|
|
4465
|
-
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
|
4547
|
+
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response", "jwt-validation"
|
|
4466
4548
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
|
4467
4549
|
# resp.rules[0].actions[0].authenticate_oidc_config.issuer #=> String
|
|
4468
4550
|
# resp.rules[0].actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
|
@@ -4501,6 +4583,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4501
4583
|
# resp.rules[0].actions[0].forward_config.target_groups[0].weight #=> Integer
|
|
4502
4584
|
# resp.rules[0].actions[0].forward_config.target_group_stickiness_config.enabled #=> Boolean
|
|
4503
4585
|
# resp.rules[0].actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
|
4586
|
+
# resp.rules[0].actions[0].jwt_validation_config.jwks_endpoint #=> String
|
|
4587
|
+
# resp.rules[0].actions[0].jwt_validation_config.issuer #=> String
|
|
4588
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims #=> Array
|
|
4589
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].format #=> String, one of "single-string", "string-array", "space-separated-values"
|
|
4590
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].name #=> String
|
|
4591
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].values #=> Array
|
|
4592
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].values[0] #=> String
|
|
4504
4593
|
# resp.rules[0].is_default #=> Boolean
|
|
4505
4594
|
# resp.rules[0].transforms #=> Array
|
|
4506
4595
|
# resp.rules[0].transforms[0].type #=> String, one of "host-header-rewrite", "url-rewrite"
|
|
@@ -4624,7 +4713,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4624
4713
|
#
|
|
4625
4714
|
# resp = client.modify_target_group({
|
|
4626
4715
|
# target_group_arn: "TargetGroupArn", # required
|
|
4627
|
-
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
|
4716
|
+
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE, QUIC, TCP_QUIC
|
|
4628
4717
|
# health_check_port: "HealthCheckPort",
|
|
4629
4718
|
# health_check_path: "Path",
|
|
4630
4719
|
# health_check_enabled: false,
|
|
@@ -4643,10 +4732,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4643
4732
|
# resp.target_groups #=> Array
|
|
4644
4733
|
# resp.target_groups[0].target_group_arn #=> String
|
|
4645
4734
|
# resp.target_groups[0].target_group_name #=> String
|
|
4646
|
-
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
4735
|
+
# resp.target_groups[0].protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
4647
4736
|
# resp.target_groups[0].port #=> Integer
|
|
4648
4737
|
# resp.target_groups[0].vpc_id #=> String
|
|
4649
|
-
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE"
|
|
4738
|
+
# resp.target_groups[0].health_check_protocol #=> String, one of "HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP", "GENEVE", "QUIC", "TCP_QUIC"
|
|
4650
4739
|
# resp.target_groups[0].health_check_port #=> String
|
|
4651
4740
|
# resp.target_groups[0].health_check_enabled #=> Boolean
|
|
4652
4741
|
# resp.target_groups[0].health_check_interval_seconds #=> Integer
|
|
@@ -4871,6 +4960,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4871
4960
|
# id: "TargetId", # required
|
|
4872
4961
|
# port: 1,
|
|
4873
4962
|
# availability_zone: "ZoneName",
|
|
4963
|
+
# quic_server_id: "QuicServerId",
|
|
4874
4964
|
# },
|
|
4875
4965
|
# ],
|
|
4876
4966
|
# })
|
|
@@ -5130,7 +5220,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
5130
5220
|
# resp.rules[0].conditions[0].regex_values #=> Array
|
|
5131
5221
|
# resp.rules[0].conditions[0].regex_values[0] #=> String
|
|
5132
5222
|
# resp.rules[0].actions #=> Array
|
|
5133
|
-
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response"
|
|
5223
|
+
# resp.rules[0].actions[0].type #=> String, one of "forward", "authenticate-oidc", "authenticate-cognito", "redirect", "fixed-response", "jwt-validation"
|
|
5134
5224
|
# resp.rules[0].actions[0].target_group_arn #=> String
|
|
5135
5225
|
# resp.rules[0].actions[0].authenticate_oidc_config.issuer #=> String
|
|
5136
5226
|
# resp.rules[0].actions[0].authenticate_oidc_config.authorization_endpoint #=> String
|
|
@@ -5169,6 +5259,13 @@ module Aws::ElasticLoadBalancingV2
|
|
|
5169
5259
|
# resp.rules[0].actions[0].forward_config.target_groups[0].weight #=> Integer
|
|
5170
5260
|
# resp.rules[0].actions[0].forward_config.target_group_stickiness_config.enabled #=> Boolean
|
|
5171
5261
|
# resp.rules[0].actions[0].forward_config.target_group_stickiness_config.duration_seconds #=> Integer
|
|
5262
|
+
# resp.rules[0].actions[0].jwt_validation_config.jwks_endpoint #=> String
|
|
5263
|
+
# resp.rules[0].actions[0].jwt_validation_config.issuer #=> String
|
|
5264
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims #=> Array
|
|
5265
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].format #=> String, one of "single-string", "string-array", "space-separated-values"
|
|
5266
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].name #=> String
|
|
5267
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].values #=> Array
|
|
5268
|
+
# resp.rules[0].actions[0].jwt_validation_config.additional_claims[0].values[0] #=> String
|
|
5172
5269
|
# resp.rules[0].is_default #=> Boolean
|
|
5173
5270
|
# resp.rules[0].transforms #=> Array
|
|
5174
5271
|
# resp.rules[0].transforms[0].type #=> String, one of "host-header-rewrite", "url-rewrite"
|
|
@@ -5207,7 +5304,8 @@ module Aws::ElasticLoadBalancingV2
|
|
|
5207
5304
|
# @option params [String] :enforce_security_group_inbound_rules_on_private_link_traffic
|
|
5208
5305
|
# Indicates whether to evaluate inbound security group rules for traffic
|
|
5209
5306
|
# sent to a Network Load Balancer through Amazon Web Services
|
|
5210
|
-
# PrivateLink.
|
|
5307
|
+
# PrivateLink. Applies only if the load balancer has an associated
|
|
5308
|
+
# security group. The default is `on`.
|
|
5211
5309
|
#
|
|
5212
5310
|
# @return [Types::SetSecurityGroupsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5213
5311
|
#
|
|
@@ -5421,7 +5519,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
5421
5519
|
tracer: tracer
|
|
5422
5520
|
)
|
|
5423
5521
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
|
5424
|
-
context[:gem_version] = '1.
|
|
5522
|
+
context[:gem_version] = '1.143.0'
|
|
5425
5523
|
Seahorse::Client::Request.new(handlers, context)
|
|
5426
5524
|
end
|
|
5427
5525
|
|
|
@@ -195,6 +195,15 @@ module Aws::ElasticLoadBalancingV2
|
|
|
195
195
|
IpamPoolId = Shapes::StringShape.new(name: 'IpamPoolId')
|
|
196
196
|
IpamPools = Shapes::StructureShape.new(name: 'IpamPools')
|
|
197
197
|
IsDefault = Shapes::BooleanShape.new(name: 'IsDefault')
|
|
198
|
+
JwtValidationActionAdditionalClaim = Shapes::StructureShape.new(name: 'JwtValidationActionAdditionalClaim')
|
|
199
|
+
JwtValidationActionAdditionalClaimFormatEnum = Shapes::StringShape.new(name: 'JwtValidationActionAdditionalClaimFormatEnum')
|
|
200
|
+
JwtValidationActionAdditionalClaimName = Shapes::StringShape.new(name: 'JwtValidationActionAdditionalClaimName')
|
|
201
|
+
JwtValidationActionAdditionalClaimValue = Shapes::StringShape.new(name: 'JwtValidationActionAdditionalClaimValue')
|
|
202
|
+
JwtValidationActionAdditionalClaimValues = Shapes::ListShape.new(name: 'JwtValidationActionAdditionalClaimValues')
|
|
203
|
+
JwtValidationActionAdditionalClaims = Shapes::ListShape.new(name: 'JwtValidationActionAdditionalClaims')
|
|
204
|
+
JwtValidationActionConfig = Shapes::StructureShape.new(name: 'JwtValidationActionConfig')
|
|
205
|
+
JwtValidationActionIssuer = Shapes::StringShape.new(name: 'JwtValidationActionIssuer')
|
|
206
|
+
JwtValidationActionJwksEndpoint = Shapes::StringShape.new(name: 'JwtValidationActionJwksEndpoint')
|
|
198
207
|
LastModifiedTime = Shapes::TimestampShape.new(name: 'LastModifiedTime')
|
|
199
208
|
Limit = Shapes::StructureShape.new(name: 'Limit')
|
|
200
209
|
Limits = Shapes::ListShape.new(name: 'Limits')
|
|
@@ -270,6 +279,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
270
279
|
QueryStringConditionConfig = Shapes::StructureShape.new(name: 'QueryStringConditionConfig')
|
|
271
280
|
QueryStringKeyValuePair = Shapes::StructureShape.new(name: 'QueryStringKeyValuePair')
|
|
272
281
|
QueryStringKeyValuePairList = Shapes::ListShape.new(name: 'QueryStringKeyValuePairList')
|
|
282
|
+
QuicServerId = Shapes::StringShape.new(name: 'QuicServerId')
|
|
273
283
|
RedirectActionConfig = Shapes::StructureShape.new(name: 'RedirectActionConfig')
|
|
274
284
|
RedirectActionHost = Shapes::StringShape.new(name: 'RedirectActionHost')
|
|
275
285
|
RedirectActionPath = Shapes::StringShape.new(name: 'RedirectActionPath')
|
|
@@ -430,6 +440,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
430
440
|
Action.add_member(:redirect_config, Shapes::ShapeRef.new(shape: RedirectActionConfig, location_name: "RedirectConfig"))
|
|
431
441
|
Action.add_member(:fixed_response_config, Shapes::ShapeRef.new(shape: FixedResponseActionConfig, location_name: "FixedResponseConfig"))
|
|
432
442
|
Action.add_member(:forward_config, Shapes::ShapeRef.new(shape: ForwardActionConfig, location_name: "ForwardConfig"))
|
|
443
|
+
Action.add_member(:jwt_validation_config, Shapes::ShapeRef.new(shape: JwtValidationActionConfig, location_name: "JwtValidationConfig"))
|
|
433
444
|
Action.struct_class = Types::Action
|
|
434
445
|
|
|
435
446
|
Actions.member = Shapes::ShapeRef.new(shape: Action)
|
|
@@ -870,6 +881,20 @@ module Aws::ElasticLoadBalancingV2
|
|
|
870
881
|
IpamPools.add_member(:ipv_4_ipam_pool_id, Shapes::ShapeRef.new(shape: IpamPoolId, location_name: "Ipv4IpamPoolId"))
|
|
871
882
|
IpamPools.struct_class = Types::IpamPools
|
|
872
883
|
|
|
884
|
+
JwtValidationActionAdditionalClaim.add_member(:format, Shapes::ShapeRef.new(shape: JwtValidationActionAdditionalClaimFormatEnum, required: true, location_name: "Format"))
|
|
885
|
+
JwtValidationActionAdditionalClaim.add_member(:name, Shapes::ShapeRef.new(shape: JwtValidationActionAdditionalClaimName, required: true, location_name: "Name"))
|
|
886
|
+
JwtValidationActionAdditionalClaim.add_member(:values, Shapes::ShapeRef.new(shape: JwtValidationActionAdditionalClaimValues, required: true, location_name: "Values"))
|
|
887
|
+
JwtValidationActionAdditionalClaim.struct_class = Types::JwtValidationActionAdditionalClaim
|
|
888
|
+
|
|
889
|
+
JwtValidationActionAdditionalClaimValues.member = Shapes::ShapeRef.new(shape: JwtValidationActionAdditionalClaimValue)
|
|
890
|
+
|
|
891
|
+
JwtValidationActionAdditionalClaims.member = Shapes::ShapeRef.new(shape: JwtValidationActionAdditionalClaim)
|
|
892
|
+
|
|
893
|
+
JwtValidationActionConfig.add_member(:jwks_endpoint, Shapes::ShapeRef.new(shape: JwtValidationActionJwksEndpoint, required: true, location_name: "JwksEndpoint"))
|
|
894
|
+
JwtValidationActionConfig.add_member(:issuer, Shapes::ShapeRef.new(shape: JwtValidationActionIssuer, required: true, location_name: "Issuer"))
|
|
895
|
+
JwtValidationActionConfig.add_member(:additional_claims, Shapes::ShapeRef.new(shape: JwtValidationActionAdditionalClaims, location_name: "AdditionalClaims"))
|
|
896
|
+
JwtValidationActionConfig.struct_class = Types::JwtValidationActionConfig
|
|
897
|
+
|
|
873
898
|
Limit.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
|
874
899
|
Limit.add_member(:max, Shapes::ShapeRef.new(shape: Max, location_name: "Max"))
|
|
875
900
|
Limit.struct_class = Types::Limit
|
|
@@ -1252,6 +1277,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1252
1277
|
TargetDescription.add_member(:id, Shapes::ShapeRef.new(shape: TargetId, required: true, location_name: "Id"))
|
|
1253
1278
|
TargetDescription.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "Port"))
|
|
1254
1279
|
TargetDescription.add_member(:availability_zone, Shapes::ShapeRef.new(shape: ZoneName, location_name: "AvailabilityZone"))
|
|
1280
|
+
TargetDescription.add_member(:quic_server_id, Shapes::ShapeRef.new(shape: QuicServerId, location_name: "QuicServerId"))
|
|
1255
1281
|
TargetDescription.struct_class = Types::TargetDescription
|
|
1256
1282
|
|
|
1257
1283
|
TargetDescriptions.member = Shapes::ShapeRef.new(shape: TargetDescription)
|
|
@@ -18,10 +18,14 @@ module Aws::ElasticLoadBalancingV2
|
|
|
18
18
|
|
|
19
19
|
# Information about an action.
|
|
20
20
|
#
|
|
21
|
-
# Each rule must include exactly one of the following
|
|
21
|
+
# Each rule must include exactly one of the following routing actions:
|
|
22
22
|
# `forward`, `fixed-response`, or `redirect`, and it must be the last
|
|
23
23
|
# action to be performed.
|
|
24
24
|
#
|
|
25
|
+
# Optionally, a rule for an HTTPS listener can also include one of the
|
|
26
|
+
# following user authentication actions: `authenticate-oidc`,
|
|
27
|
+
# `authenticate-cognito`, or `jwt-validation`.
|
|
28
|
+
#
|
|
25
29
|
# @!attribute [rw] type
|
|
26
30
|
# The type of action.
|
|
27
31
|
# @return [String]
|
|
@@ -29,8 +33,8 @@ module Aws::ElasticLoadBalancingV2
|
|
|
29
33
|
# @!attribute [rw] target_group_arn
|
|
30
34
|
# The Amazon Resource Name (ARN) of the target group. Specify only
|
|
31
35
|
# when `Type` is `forward` and you want to route to a single target
|
|
32
|
-
# group. To route to
|
|
33
|
-
# instead.
|
|
36
|
+
# group. To route to multiple target groups, you must use
|
|
37
|
+
# `ForwardConfig` instead.
|
|
34
38
|
# @return [String]
|
|
35
39
|
#
|
|
36
40
|
# @!attribute [rw] authenticate_oidc_config
|
|
@@ -64,13 +68,18 @@ module Aws::ElasticLoadBalancingV2
|
|
|
64
68
|
#
|
|
65
69
|
# @!attribute [rw] forward_config
|
|
66
70
|
# Information for creating an action that distributes requests among
|
|
67
|
-
#
|
|
68
|
-
#
|
|
69
|
-
#
|
|
70
|
-
#
|
|
71
|
-
#
|
|
71
|
+
# multiple target groups. Specify only when `Type` is `forward`.
|
|
72
|
+
#
|
|
73
|
+
# If you specify both `ForwardConfig` and `TargetGroupArn`, you can
|
|
74
|
+
# specify only one target group using `ForwardConfig` and it must be
|
|
75
|
+
# the same target group specified in `TargetGroupArn`.
|
|
72
76
|
# @return [Types::ForwardActionConfig]
|
|
73
77
|
#
|
|
78
|
+
# @!attribute [rw] jwt_validation_config
|
|
79
|
+
# \[HTTPS listeners\] Information for validating JWT access tokens in
|
|
80
|
+
# client requests. Specify only when `Type` is `jwt-validation`.
|
|
81
|
+
# @return [Types::JwtValidationActionConfig]
|
|
82
|
+
#
|
|
74
83
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/Action AWS API Documentation
|
|
75
84
|
#
|
|
76
85
|
class Action < Struct.new(
|
|
@@ -81,7 +90,8 @@ module Aws::ElasticLoadBalancingV2
|
|
|
81
90
|
:order,
|
|
82
91
|
:redirect_config,
|
|
83
92
|
:fixed_response_config,
|
|
84
|
-
:forward_config
|
|
93
|
+
:forward_config,
|
|
94
|
+
:jwt_validation_config)
|
|
85
95
|
SENSITIVE = []
|
|
86
96
|
include Aws::Structure
|
|
87
97
|
end
|
|
@@ -1878,8 +1888,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1878
1888
|
# Information about a forward action.
|
|
1879
1889
|
#
|
|
1880
1890
|
# @!attribute [rw] target_groups
|
|
1881
|
-
# The target groups.
|
|
1882
|
-
# single target group.
|
|
1891
|
+
# The target groups.
|
|
1883
1892
|
# @return [Array<Types::TargetGroupTuple>]
|
|
1884
1893
|
#
|
|
1885
1894
|
# @!attribute [rw] target_group_stickiness_config
|
|
@@ -2181,6 +2190,63 @@ module Aws::ElasticLoadBalancingV2
|
|
|
2181
2190
|
include Aws::Structure
|
|
2182
2191
|
end
|
|
2183
2192
|
|
|
2193
|
+
# Information about an additional claim to validate.
|
|
2194
|
+
#
|
|
2195
|
+
# @!attribute [rw] format
|
|
2196
|
+
# The format of the claim value.
|
|
2197
|
+
# @return [String]
|
|
2198
|
+
#
|
|
2199
|
+
# @!attribute [rw] name
|
|
2200
|
+
# The name of the claim. You can't specify `exp`, `iss`, `nbf`, or
|
|
2201
|
+
# `iat` because we validate them by default.
|
|
2202
|
+
# @return [String]
|
|
2203
|
+
#
|
|
2204
|
+
# @!attribute [rw] values
|
|
2205
|
+
# The claim value. The maximum size of the list is 10. Each value can
|
|
2206
|
+
# be up to 256 characters in length. If the format is
|
|
2207
|
+
# `space-separated-values`, the values can't include spaces.
|
|
2208
|
+
# @return [Array<String>]
|
|
2209
|
+
#
|
|
2210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/JwtValidationActionAdditionalClaim AWS API Documentation
|
|
2211
|
+
#
|
|
2212
|
+
class JwtValidationActionAdditionalClaim < Struct.new(
|
|
2213
|
+
:format,
|
|
2214
|
+
:name,
|
|
2215
|
+
:values)
|
|
2216
|
+
SENSITIVE = []
|
|
2217
|
+
include Aws::Structure
|
|
2218
|
+
end
|
|
2219
|
+
|
|
2220
|
+
# Information about a JSON Web Token (JWT) validation action.
|
|
2221
|
+
#
|
|
2222
|
+
# @!attribute [rw] jwks_endpoint
|
|
2223
|
+
# The JSON Web Key Set (JWKS) endpoint. This endpoint contains JSON
|
|
2224
|
+
# Web Keys (JWK) that are used to validate signatures from the
|
|
2225
|
+
# provider.
|
|
2226
|
+
#
|
|
2227
|
+
# This must be a full URL, including the HTTPS protocol, the domain,
|
|
2228
|
+
# and the path. The maximum length is 256 characters.
|
|
2229
|
+
# @return [String]
|
|
2230
|
+
#
|
|
2231
|
+
# @!attribute [rw] issuer
|
|
2232
|
+
# The issuer of the JWT. The maximum length is 256 characters.
|
|
2233
|
+
# @return [String]
|
|
2234
|
+
#
|
|
2235
|
+
# @!attribute [rw] additional_claims
|
|
2236
|
+
# Additional claims to validate. The maximum size of the list is 10.
|
|
2237
|
+
# We validate the `exp`, `iss`, `nbf`, and `iat` claims by default.
|
|
2238
|
+
# @return [Array<Types::JwtValidationActionAdditionalClaim>]
|
|
2239
|
+
#
|
|
2240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/JwtValidationActionConfig AWS API Documentation
|
|
2241
|
+
#
|
|
2242
|
+
class JwtValidationActionConfig < Struct.new(
|
|
2243
|
+
:jwks_endpoint,
|
|
2244
|
+
:issuer,
|
|
2245
|
+
:additional_claims)
|
|
2246
|
+
SENSITIVE = []
|
|
2247
|
+
include Aws::Structure
|
|
2248
|
+
end
|
|
2249
|
+
|
|
2184
2250
|
# Information about an Elastic Load Balancing resource limit for your
|
|
2185
2251
|
# Amazon Web Services account.
|
|
2186
2252
|
#
|
|
@@ -3887,7 +3953,8 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3887
3953
|
# @!attribute [rw] enforce_security_group_inbound_rules_on_private_link_traffic
|
|
3888
3954
|
# Indicates whether to evaluate inbound security group rules for
|
|
3889
3955
|
# traffic sent to a Network Load Balancer through Amazon Web Services
|
|
3890
|
-
# PrivateLink.
|
|
3956
|
+
# PrivateLink. Applies only if the load balancer has an associated
|
|
3957
|
+
# security group. The default is `on`.
|
|
3891
3958
|
# @return [String]
|
|
3892
3959
|
#
|
|
3893
3960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSecurityGroupsInput AWS API Documentation
|
|
@@ -4217,12 +4284,25 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4217
4284
|
# only supported value is `all`.
|
|
4218
4285
|
# @return [String]
|
|
4219
4286
|
#
|
|
4287
|
+
# @!attribute [rw] quic_server_id
|
|
4288
|
+
# The server ID for the targets. This value is required if the
|
|
4289
|
+
# protocol is `QUIC` or `TCP_QUIC` and can't be used with other
|
|
4290
|
+
# protocols.
|
|
4291
|
+
#
|
|
4292
|
+
# The ID consists of the `0x` prefix followed by 16 hexadecimal
|
|
4293
|
+
# characters. Any letters must be lowercase. The value must be unique
|
|
4294
|
+
# at the listener level. You can't modify the server ID for a
|
|
4295
|
+
# registered target. You must deregister the target and then provide a
|
|
4296
|
+
# new server ID when you register the target again.
|
|
4297
|
+
# @return [String]
|
|
4298
|
+
#
|
|
4220
4299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetDescription AWS API Documentation
|
|
4221
4300
|
#
|
|
4222
4301
|
class TargetDescription < Struct.new(
|
|
4223
4302
|
:id,
|
|
4224
4303
|
:port,
|
|
4225
|
-
:availability_zone
|
|
4304
|
+
:availability_zone,
|
|
4305
|
+
:quic_server_id)
|
|
4226
4306
|
SENSITIVE = []
|
|
4227
4307
|
include Aws::Structure
|
|
4228
4308
|
end
|
|
@@ -4542,10 +4622,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4542
4622
|
# @return [Boolean]
|
|
4543
4623
|
#
|
|
4544
4624
|
# @!attribute [rw] duration_seconds
|
|
4545
|
-
# The time period, in seconds, during
|
|
4546
|
-
# should be routed to the same target
|
|
4547
|
-
# seconds (7 days). You must specify this
|
|
4548
|
-
# group stickiness.
|
|
4625
|
+
# \[Application Load Balancers\] The time period, in seconds, during
|
|
4626
|
+
# which requests from a client should be routed to the same target
|
|
4627
|
+
# group. The range is 1-604800 seconds (7 days). You must specify this
|
|
4628
|
+
# value when enabling target group stickiness.
|
|
4549
4629
|
# @return [Integer]
|
|
4550
4630
|
#
|
|
4551
4631
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroupStickinessConfig AWS API Documentation
|
|
@@ -4602,18 +4682,16 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4602
4682
|
# the following values:
|
|
4603
4683
|
#
|
|
4604
4684
|
# * `Target.ResponseCodeMismatch` - The health checks did not return
|
|
4605
|
-
# an expected HTTP code.
|
|
4606
|
-
# and Gateway Load Balancers.
|
|
4685
|
+
# an expected HTTP code.
|
|
4607
4686
|
#
|
|
4608
|
-
# * `Target.Timeout` - The health check requests timed out.
|
|
4609
|
-
# only to Application Load Balancers and Gateway Load Balancers.
|
|
4687
|
+
# * `Target.Timeout` - The health check requests timed out.
|
|
4610
4688
|
#
|
|
4611
4689
|
# * `Target.FailedHealthChecks` - The load balancer received an error
|
|
4612
4690
|
# while establishing a connection to the target or the target
|
|
4613
4691
|
# response was malformed.
|
|
4614
4692
|
#
|
|
4615
4693
|
# * `Elb.InternalError` - The health checks failed due to an internal
|
|
4616
|
-
# error.
|
|
4694
|
+
# error.
|
|
4617
4695
|
#
|
|
4618
4696
|
# If the target state is `unused`, the reason code can be one of the
|
|
4619
4697
|
# following values:
|
|
@@ -4644,10 +4722,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4644
4722
|
# following value:
|
|
4645
4723
|
#
|
|
4646
4724
|
# * `Target.HealthCheckDisabled` - Health checks are disabled for the
|
|
4647
|
-
# target group.
|
|
4725
|
+
# target group.
|
|
4648
4726
|
#
|
|
4649
4727
|
# * `Elb.InternalError` - Target health is unavailable due to an
|
|
4650
|
-
# internal error.
|
|
4728
|
+
# internal error.
|
|
4651
4729
|
# @return [String]
|
|
4652
4730
|
#
|
|
4653
4731
|
# @!attribute [rw] description
|
data/sig/client.rbs
CHANGED
|
@@ -134,7 +134,7 @@ module Aws
|
|
|
134
134
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#create_listener-instance_method
|
|
135
135
|
def create_listener: (
|
|
136
136
|
load_balancer_arn: ::String,
|
|
137
|
-
?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
|
|
137
|
+
?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
|
|
138
138
|
?port: ::Integer,
|
|
139
139
|
?ssl_policy: ::String,
|
|
140
140
|
?certificates: Array[
|
|
@@ -145,7 +145,7 @@ module Aws
|
|
|
145
145
|
],
|
|
146
146
|
default_actions: Array[
|
|
147
147
|
{
|
|
148
|
-
type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response"),
|
|
148
|
+
type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response" | "jwt-validation"),
|
|
149
149
|
target_group_arn: ::String?,
|
|
150
150
|
authenticate_oidc_config: {
|
|
151
151
|
issuer: ::String,
|
|
@@ -196,6 +196,17 @@ module Aws
|
|
|
196
196
|
enabled: bool?,
|
|
197
197
|
duration_seconds: ::Integer?
|
|
198
198
|
}?
|
|
199
|
+
}?,
|
|
200
|
+
jwt_validation_config: {
|
|
201
|
+
jwks_endpoint: ::String,
|
|
202
|
+
issuer: ::String,
|
|
203
|
+
additional_claims: Array[
|
|
204
|
+
{
|
|
205
|
+
format: ("single-string" | "string-array" | "space-separated-values"),
|
|
206
|
+
name: ::String,
|
|
207
|
+
values: Array[::String]
|
|
208
|
+
},
|
|
209
|
+
]?
|
|
199
210
|
}?
|
|
200
211
|
},
|
|
201
212
|
],
|
|
@@ -295,7 +306,7 @@ module Aws
|
|
|
295
306
|
priority: ::Integer,
|
|
296
307
|
actions: Array[
|
|
297
308
|
{
|
|
298
|
-
type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response"),
|
|
309
|
+
type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response" | "jwt-validation"),
|
|
299
310
|
target_group_arn: ::String?,
|
|
300
311
|
authenticate_oidc_config: {
|
|
301
312
|
issuer: ::String,
|
|
@@ -346,6 +357,17 @@ module Aws
|
|
|
346
357
|
enabled: bool?,
|
|
347
358
|
duration_seconds: ::Integer?
|
|
348
359
|
}?
|
|
360
|
+
}?,
|
|
361
|
+
jwt_validation_config: {
|
|
362
|
+
jwks_endpoint: ::String,
|
|
363
|
+
issuer: ::String,
|
|
364
|
+
additional_claims: Array[
|
|
365
|
+
{
|
|
366
|
+
format: ("single-string" | "string-array" | "space-separated-values"),
|
|
367
|
+
name: ::String,
|
|
368
|
+
values: Array[::String]
|
|
369
|
+
},
|
|
370
|
+
]?
|
|
349
371
|
}?
|
|
350
372
|
},
|
|
351
373
|
],
|
|
@@ -386,11 +408,11 @@ module Aws
|
|
|
386
408
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#create_target_group-instance_method
|
|
387
409
|
def create_target_group: (
|
|
388
410
|
name: ::String,
|
|
389
|
-
?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
|
|
411
|
+
?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
|
|
390
412
|
?protocol_version: ::String,
|
|
391
413
|
?port: ::Integer,
|
|
392
414
|
?vpc_id: ::String,
|
|
393
|
-
?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
|
|
415
|
+
?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
|
|
394
416
|
?health_check_port: ::String,
|
|
395
417
|
?health_check_enabled: bool,
|
|
396
418
|
?health_check_path: ::String,
|
|
@@ -497,7 +519,8 @@ module Aws
|
|
|
497
519
|
{
|
|
498
520
|
id: ::String,
|
|
499
521
|
port: ::Integer?,
|
|
500
|
-
availability_zone: ::String
|
|
522
|
+
availability_zone: ::String?,
|
|
523
|
+
quic_server_id: ::String?
|
|
501
524
|
},
|
|
502
525
|
]
|
|
503
526
|
) -> _DeregisterTargetsResponseSuccess
|
|
@@ -663,7 +686,8 @@ module Aws
|
|
|
663
686
|
{
|
|
664
687
|
id: ::String,
|
|
665
688
|
port: ::Integer?,
|
|
666
|
-
availability_zone: ::String
|
|
689
|
+
availability_zone: ::String?,
|
|
690
|
+
quic_server_id: ::String?
|
|
667
691
|
},
|
|
668
692
|
],
|
|
669
693
|
?include: Array[("AnomalyDetection" | "All")]
|
|
@@ -781,7 +805,7 @@ module Aws
|
|
|
781
805
|
def modify_listener: (
|
|
782
806
|
listener_arn: ::String,
|
|
783
807
|
?port: ::Integer,
|
|
784
|
-
?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
|
|
808
|
+
?protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
|
|
785
809
|
?ssl_policy: ::String,
|
|
786
810
|
?certificates: Array[
|
|
787
811
|
{
|
|
@@ -791,7 +815,7 @@ module Aws
|
|
|
791
815
|
],
|
|
792
816
|
?default_actions: Array[
|
|
793
817
|
{
|
|
794
|
-
type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response"),
|
|
818
|
+
type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response" | "jwt-validation"),
|
|
795
819
|
target_group_arn: ::String?,
|
|
796
820
|
authenticate_oidc_config: {
|
|
797
821
|
issuer: ::String,
|
|
@@ -842,6 +866,17 @@ module Aws
|
|
|
842
866
|
enabled: bool?,
|
|
843
867
|
duration_seconds: ::Integer?
|
|
844
868
|
}?
|
|
869
|
+
}?,
|
|
870
|
+
jwt_validation_config: {
|
|
871
|
+
jwks_endpoint: ::String,
|
|
872
|
+
issuer: ::String,
|
|
873
|
+
additional_claims: Array[
|
|
874
|
+
{
|
|
875
|
+
format: ("single-string" | "string-array" | "space-separated-values"),
|
|
876
|
+
name: ::String,
|
|
877
|
+
values: Array[::String]
|
|
878
|
+
},
|
|
879
|
+
]?
|
|
845
880
|
}?
|
|
846
881
|
},
|
|
847
882
|
],
|
|
@@ -931,7 +966,7 @@ module Aws
|
|
|
931
966
|
],
|
|
932
967
|
?actions: Array[
|
|
933
968
|
{
|
|
934
|
-
type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response"),
|
|
969
|
+
type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response" | "jwt-validation"),
|
|
935
970
|
target_group_arn: ::String?,
|
|
936
971
|
authenticate_oidc_config: {
|
|
937
972
|
issuer: ::String,
|
|
@@ -982,6 +1017,17 @@ module Aws
|
|
|
982
1017
|
enabled: bool?,
|
|
983
1018
|
duration_seconds: ::Integer?
|
|
984
1019
|
}?
|
|
1020
|
+
}?,
|
|
1021
|
+
jwt_validation_config: {
|
|
1022
|
+
jwks_endpoint: ::String,
|
|
1023
|
+
issuer: ::String,
|
|
1024
|
+
additional_claims: Array[
|
|
1025
|
+
{
|
|
1026
|
+
format: ("single-string" | "string-array" | "space-separated-values"),
|
|
1027
|
+
name: ::String,
|
|
1028
|
+
values: Array[::String]
|
|
1029
|
+
},
|
|
1030
|
+
]?
|
|
985
1031
|
}?
|
|
986
1032
|
},
|
|
987
1033
|
],
|
|
@@ -1017,7 +1063,7 @@ module Aws
|
|
|
1017
1063
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticLoadBalancingV2/Client.html#modify_target_group-instance_method
|
|
1018
1064
|
def modify_target_group: (
|
|
1019
1065
|
target_group_arn: ::String,
|
|
1020
|
-
?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE"),
|
|
1066
|
+
?health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC"),
|
|
1021
1067
|
?health_check_port: ::String,
|
|
1022
1068
|
?health_check_path: ::String,
|
|
1023
1069
|
?health_check_enabled: bool,
|
|
@@ -1071,7 +1117,8 @@ module Aws
|
|
|
1071
1117
|
{
|
|
1072
1118
|
id: ::String,
|
|
1073
1119
|
port: ::Integer?,
|
|
1074
|
-
availability_zone: ::String
|
|
1120
|
+
availability_zone: ::String?,
|
|
1121
|
+
quic_server_id: ::String?
|
|
1075
1122
|
},
|
|
1076
1123
|
]
|
|
1077
1124
|
) -> _RegisterTargetsResponseSuccess
|
|
@@ -1203,7 +1250,8 @@ module Aws
|
|
|
1203
1250
|
{
|
|
1204
1251
|
id: ::String,
|
|
1205
1252
|
port: ::Integer?,
|
|
1206
|
-
availability_zone: ::String
|
|
1253
|
+
availability_zone: ::String?,
|
|
1254
|
+
quic_server_id: ::String?
|
|
1207
1255
|
},
|
|
1208
1256
|
],
|
|
1209
1257
|
?include: Array[("AnomalyDetection" | "All")]
|
|
@@ -1215,7 +1263,8 @@ module Aws
|
|
|
1215
1263
|
{
|
|
1216
1264
|
id: ::String,
|
|
1217
1265
|
port: ::Integer?,
|
|
1218
|
-
availability_zone: ::String
|
|
1266
|
+
availability_zone: ::String?,
|
|
1267
|
+
quic_server_id: ::String?
|
|
1219
1268
|
},
|
|
1220
1269
|
],
|
|
1221
1270
|
?include: Array[("AnomalyDetection" | "All")]
|
data/sig/types.rbs
CHANGED
|
@@ -12,7 +12,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
class Action
|
|
15
|
-
attr_accessor type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response")
|
|
15
|
+
attr_accessor type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response" | "jwt-validation")
|
|
16
16
|
attr_accessor target_group_arn: ::String
|
|
17
17
|
attr_accessor authenticate_oidc_config: Types::AuthenticateOidcActionConfig
|
|
18
18
|
attr_accessor authenticate_cognito_config: Types::AuthenticateCognitoActionConfig
|
|
@@ -20,6 +20,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
20
20
|
attr_accessor redirect_config: Types::RedirectActionConfig
|
|
21
21
|
attr_accessor fixed_response_config: Types::FixedResponseActionConfig
|
|
22
22
|
attr_accessor forward_config: Types::ForwardActionConfig
|
|
23
|
+
attr_accessor jwt_validation_config: Types::JwtValidationActionConfig
|
|
23
24
|
SENSITIVE: []
|
|
24
25
|
end
|
|
25
26
|
|
|
@@ -145,7 +146,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
145
146
|
|
|
146
147
|
class CreateListenerInput
|
|
147
148
|
attr_accessor load_balancer_arn: ::String
|
|
148
|
-
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
|
|
149
|
+
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
|
|
149
150
|
attr_accessor port: ::Integer
|
|
150
151
|
attr_accessor ssl_policy: ::String
|
|
151
152
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
@@ -198,11 +199,11 @@ module Aws::ElasticLoadBalancingV2
|
|
|
198
199
|
|
|
199
200
|
class CreateTargetGroupInput
|
|
200
201
|
attr_accessor name: ::String
|
|
201
|
-
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
|
|
202
|
+
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
|
|
202
203
|
attr_accessor protocol_version: ::String
|
|
203
204
|
attr_accessor port: ::Integer
|
|
204
205
|
attr_accessor vpc_id: ::String
|
|
205
|
-
attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
|
|
206
|
+
attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
|
|
206
207
|
attr_accessor health_check_port: ::String
|
|
207
208
|
attr_accessor health_check_enabled: bool
|
|
208
209
|
attr_accessor health_check_path: ::String
|
|
@@ -627,6 +628,20 @@ module Aws::ElasticLoadBalancingV2
|
|
|
627
628
|
SENSITIVE: []
|
|
628
629
|
end
|
|
629
630
|
|
|
631
|
+
class JwtValidationActionAdditionalClaim
|
|
632
|
+
attr_accessor format: ("single-string" | "string-array" | "space-separated-values")
|
|
633
|
+
attr_accessor name: ::String
|
|
634
|
+
attr_accessor values: ::Array[::String]
|
|
635
|
+
SENSITIVE: []
|
|
636
|
+
end
|
|
637
|
+
|
|
638
|
+
class JwtValidationActionConfig
|
|
639
|
+
attr_accessor jwks_endpoint: ::String
|
|
640
|
+
attr_accessor issuer: ::String
|
|
641
|
+
attr_accessor additional_claims: ::Array[Types::JwtValidationActionAdditionalClaim]
|
|
642
|
+
SENSITIVE: []
|
|
643
|
+
end
|
|
644
|
+
|
|
630
645
|
class Limit
|
|
631
646
|
attr_accessor name: ::String
|
|
632
647
|
attr_accessor max: ::String
|
|
@@ -637,7 +652,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
637
652
|
attr_accessor listener_arn: ::String
|
|
638
653
|
attr_accessor load_balancer_arn: ::String
|
|
639
654
|
attr_accessor port: ::Integer
|
|
640
|
-
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
|
|
655
|
+
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
|
|
641
656
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
642
657
|
attr_accessor ssl_policy: ::String
|
|
643
658
|
attr_accessor default_actions: ::Array[Types::Action]
|
|
@@ -750,7 +765,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
750
765
|
class ModifyListenerInput
|
|
751
766
|
attr_accessor listener_arn: ::String
|
|
752
767
|
attr_accessor port: ::Integer
|
|
753
|
-
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
|
|
768
|
+
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
|
|
754
769
|
attr_accessor ssl_policy: ::String
|
|
755
770
|
attr_accessor certificates: ::Array[Types::Certificate]
|
|
756
771
|
attr_accessor default_actions: ::Array[Types::Action]
|
|
@@ -802,7 +817,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
802
817
|
|
|
803
818
|
class ModifyTargetGroupInput
|
|
804
819
|
attr_accessor target_group_arn: ::String
|
|
805
|
-
attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
|
|
820
|
+
attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
|
|
806
821
|
attr_accessor health_check_port: ::String
|
|
807
822
|
attr_accessor health_check_path: ::String
|
|
808
823
|
attr_accessor health_check_enabled: bool
|
|
@@ -1072,16 +1087,17 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1072
1087
|
attr_accessor id: ::String
|
|
1073
1088
|
attr_accessor port: ::Integer
|
|
1074
1089
|
attr_accessor availability_zone: ::String
|
|
1090
|
+
attr_accessor quic_server_id: ::String
|
|
1075
1091
|
SENSITIVE: []
|
|
1076
1092
|
end
|
|
1077
1093
|
|
|
1078
1094
|
class TargetGroup
|
|
1079
1095
|
attr_accessor target_group_arn: ::String
|
|
1080
1096
|
attr_accessor target_group_name: ::String
|
|
1081
|
-
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
|
|
1097
|
+
attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
|
|
1082
1098
|
attr_accessor port: ::Integer
|
|
1083
1099
|
attr_accessor vpc_id: ::String
|
|
1084
|
-
attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
|
|
1100
|
+
attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE" | "QUIC" | "TCP_QUIC")
|
|
1085
1101
|
attr_accessor health_check_port: ::String
|
|
1086
1102
|
attr_accessor health_check_enabled: bool
|
|
1087
1103
|
attr_accessor health_check_interval_seconds: ::Integer
|
data/sig/waiters.rbs
CHANGED
|
@@ -58,7 +58,8 @@ module Aws
|
|
|
58
58
|
{
|
|
59
59
|
id: ::String,
|
|
60
60
|
port: ::Integer?,
|
|
61
|
-
availability_zone: ::String
|
|
61
|
+
availability_zone: ::String?,
|
|
62
|
+
quic_server_id: ::String?
|
|
62
63
|
},
|
|
63
64
|
],
|
|
64
65
|
?include: Array[("AnomalyDetection" | "All")]
|
|
@@ -76,7 +77,8 @@ module Aws
|
|
|
76
77
|
{
|
|
77
78
|
id: ::String,
|
|
78
79
|
port: ::Integer?,
|
|
79
|
-
availability_zone: ::String
|
|
80
|
+
availability_zone: ::String?,
|
|
81
|
+
quic_server_id: ::String?
|
|
80
82
|
},
|
|
81
83
|
],
|
|
82
84
|
?include: Array[("AnomalyDetection" | "All")]
|