aws-sdk-elasticloadbalancingv2 1.82.0 → 1.84.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +3 -3
- data/lib/aws-sdk-elasticloadbalancingv2/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-elasticloadbalancingv2/endpoint_provider.rb +38 -102
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +2 -1023
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- metadata +2 -2
@@ -22,68 +22,6 @@ module Aws::ElasticLoadBalancingV2
|
|
22
22
|
# `forward`, `fixed-response`, or `redirect`, and it must be the last
|
23
23
|
# action to be performed.
|
24
24
|
#
|
25
|
-
# @note When making an API call, you may pass Action
|
26
|
-
# data as a hash:
|
27
|
-
#
|
28
|
-
# {
|
29
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
30
|
-
# target_group_arn: "TargetGroupArn",
|
31
|
-
# authenticate_oidc_config: {
|
32
|
-
# issuer: "AuthenticateOidcActionIssuer", # required
|
33
|
-
# authorization_endpoint: "AuthenticateOidcActionAuthorizationEndpoint", # required
|
34
|
-
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
35
|
-
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
36
|
-
# client_id: "AuthenticateOidcActionClientId", # required
|
37
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
38
|
-
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
39
|
-
# scope: "AuthenticateOidcActionScope",
|
40
|
-
# session_timeout: 1,
|
41
|
-
# authentication_request_extra_params: {
|
42
|
-
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
43
|
-
# },
|
44
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
45
|
-
# use_existing_client_secret: false,
|
46
|
-
# },
|
47
|
-
# authenticate_cognito_config: {
|
48
|
-
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
49
|
-
# user_pool_client_id: "AuthenticateCognitoActionUserPoolClientId", # required
|
50
|
-
# user_pool_domain: "AuthenticateCognitoActionUserPoolDomain", # required
|
51
|
-
# session_cookie_name: "AuthenticateCognitoActionSessionCookieName",
|
52
|
-
# scope: "AuthenticateCognitoActionScope",
|
53
|
-
# session_timeout: 1,
|
54
|
-
# authentication_request_extra_params: {
|
55
|
-
# "AuthenticateCognitoActionAuthenticationRequestParamName" => "AuthenticateCognitoActionAuthenticationRequestParamValue",
|
56
|
-
# },
|
57
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
58
|
-
# },
|
59
|
-
# order: 1,
|
60
|
-
# redirect_config: {
|
61
|
-
# protocol: "RedirectActionProtocol",
|
62
|
-
# port: "RedirectActionPort",
|
63
|
-
# host: "RedirectActionHost",
|
64
|
-
# path: "RedirectActionPath",
|
65
|
-
# query: "RedirectActionQuery",
|
66
|
-
# status_code: "HTTP_301", # required, accepts HTTP_301, HTTP_302
|
67
|
-
# },
|
68
|
-
# fixed_response_config: {
|
69
|
-
# message_body: "FixedResponseActionMessage",
|
70
|
-
# status_code: "FixedResponseActionStatusCode", # required
|
71
|
-
# content_type: "FixedResponseActionContentType",
|
72
|
-
# },
|
73
|
-
# forward_config: {
|
74
|
-
# target_groups: [
|
75
|
-
# {
|
76
|
-
# target_group_arn: "TargetGroupArn",
|
77
|
-
# weight: 1,
|
78
|
-
# },
|
79
|
-
# ],
|
80
|
-
# target_group_stickiness_config: {
|
81
|
-
# enabled: false,
|
82
|
-
# duration_seconds: 1,
|
83
|
-
# },
|
84
|
-
# },
|
85
|
-
# }
|
86
|
-
#
|
87
25
|
# @!attribute [rw] type
|
88
26
|
# The type of action.
|
89
27
|
# @return [String]
|
@@ -148,19 +86,6 @@ module Aws::ElasticLoadBalancingV2
|
|
148
86
|
include Aws::Structure
|
149
87
|
end
|
150
88
|
|
151
|
-
# @note When making an API call, you may pass AddListenerCertificatesInput
|
152
|
-
# data as a hash:
|
153
|
-
#
|
154
|
-
# {
|
155
|
-
# listener_arn: "ListenerArn", # required
|
156
|
-
# certificates: [ # required
|
157
|
-
# {
|
158
|
-
# certificate_arn: "CertificateArn",
|
159
|
-
# is_default: false,
|
160
|
-
# },
|
161
|
-
# ],
|
162
|
-
# }
|
163
|
-
#
|
164
89
|
# @!attribute [rw] listener_arn
|
165
90
|
# The Amazon Resource Name (ARN) of the listener.
|
166
91
|
# @return [String]
|
@@ -192,19 +117,6 @@ module Aws::ElasticLoadBalancingV2
|
|
192
117
|
include Aws::Structure
|
193
118
|
end
|
194
119
|
|
195
|
-
# @note When making an API call, you may pass AddTagsInput
|
196
|
-
# data as a hash:
|
197
|
-
#
|
198
|
-
# {
|
199
|
-
# resource_arns: ["ResourceArn"], # required
|
200
|
-
# tags: [ # required
|
201
|
-
# {
|
202
|
-
# key: "TagKey", # required
|
203
|
-
# value: "TagValue",
|
204
|
-
# },
|
205
|
-
# ],
|
206
|
-
# }
|
207
|
-
#
|
208
120
|
# @!attribute [rw] resource_arns
|
209
121
|
# The Amazon Resource Name (ARN) of the resource.
|
210
122
|
# @return [Array<String>]
|
@@ -235,22 +147,6 @@ module Aws::ElasticLoadBalancingV2
|
|
235
147
|
# Request parameters to use when integrating with Amazon Cognito to
|
236
148
|
# authenticate users.
|
237
149
|
#
|
238
|
-
# @note When making an API call, you may pass AuthenticateCognitoActionConfig
|
239
|
-
# data as a hash:
|
240
|
-
#
|
241
|
-
# {
|
242
|
-
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
243
|
-
# user_pool_client_id: "AuthenticateCognitoActionUserPoolClientId", # required
|
244
|
-
# user_pool_domain: "AuthenticateCognitoActionUserPoolDomain", # required
|
245
|
-
# session_cookie_name: "AuthenticateCognitoActionSessionCookieName",
|
246
|
-
# scope: "AuthenticateCognitoActionScope",
|
247
|
-
# session_timeout: 1,
|
248
|
-
# authentication_request_extra_params: {
|
249
|
-
# "AuthenticateCognitoActionAuthenticationRequestParamName" => "AuthenticateCognitoActionAuthenticationRequestParamValue",
|
250
|
-
# },
|
251
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
252
|
-
# }
|
253
|
-
#
|
254
150
|
# @!attribute [rw] user_pool_arn
|
255
151
|
# The Amazon Resource Name (ARN) of the Amazon Cognito user pool.
|
256
152
|
# @return [String]
|
@@ -317,26 +213,6 @@ module Aws::ElasticLoadBalancingV2
|
|
317
213
|
# Request parameters when using an identity provider (IdP) that is
|
318
214
|
# compliant with OpenID Connect (OIDC) to authenticate users.
|
319
215
|
#
|
320
|
-
# @note When making an API call, you may pass AuthenticateOidcActionConfig
|
321
|
-
# data as a hash:
|
322
|
-
#
|
323
|
-
# {
|
324
|
-
# issuer: "AuthenticateOidcActionIssuer", # required
|
325
|
-
# authorization_endpoint: "AuthenticateOidcActionAuthorizationEndpoint", # required
|
326
|
-
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
327
|
-
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
328
|
-
# client_id: "AuthenticateOidcActionClientId", # required
|
329
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
330
|
-
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
331
|
-
# scope: "AuthenticateOidcActionScope",
|
332
|
-
# session_timeout: 1,
|
333
|
-
# authentication_request_extra_params: {
|
334
|
-
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
335
|
-
# },
|
336
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
337
|
-
# use_existing_client_secret: false,
|
338
|
-
# }
|
339
|
-
#
|
340
216
|
# @!attribute [rw] issuer
|
341
217
|
# The OIDC issuer identifier of the IdP. This must be a full URL,
|
342
218
|
# including the HTTPS protocol, the domain, and the path.
|
@@ -469,14 +345,6 @@ module Aws::ElasticLoadBalancingV2
|
|
469
345
|
|
470
346
|
# Information about an SSL server certificate.
|
471
347
|
#
|
472
|
-
# @note When making an API call, you may pass Certificate
|
473
|
-
# data as a hash:
|
474
|
-
#
|
475
|
-
# {
|
476
|
-
# certificate_arn: "CertificateArn",
|
477
|
-
# is_default: false,
|
478
|
-
# }
|
479
|
-
#
|
480
348
|
# @!attribute [rw] certificate_arn
|
481
349
|
# The Amazon Resource Name (ARN) of the certificate.
|
482
350
|
# @return [String]
|
@@ -522,89 +390,6 @@ module Aws::ElasticLoadBalancingV2
|
|
522
390
|
include Aws::Structure
|
523
391
|
end
|
524
392
|
|
525
|
-
# @note When making an API call, you may pass CreateListenerInput
|
526
|
-
# data as a hash:
|
527
|
-
#
|
528
|
-
# {
|
529
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
530
|
-
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
531
|
-
# port: 1,
|
532
|
-
# ssl_policy: "SslPolicyName",
|
533
|
-
# certificates: [
|
534
|
-
# {
|
535
|
-
# certificate_arn: "CertificateArn",
|
536
|
-
# is_default: false,
|
537
|
-
# },
|
538
|
-
# ],
|
539
|
-
# default_actions: [ # required
|
540
|
-
# {
|
541
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
542
|
-
# target_group_arn: "TargetGroupArn",
|
543
|
-
# authenticate_oidc_config: {
|
544
|
-
# issuer: "AuthenticateOidcActionIssuer", # required
|
545
|
-
# authorization_endpoint: "AuthenticateOidcActionAuthorizationEndpoint", # required
|
546
|
-
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
547
|
-
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
548
|
-
# client_id: "AuthenticateOidcActionClientId", # required
|
549
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
550
|
-
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
551
|
-
# scope: "AuthenticateOidcActionScope",
|
552
|
-
# session_timeout: 1,
|
553
|
-
# authentication_request_extra_params: {
|
554
|
-
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
555
|
-
# },
|
556
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
557
|
-
# use_existing_client_secret: false,
|
558
|
-
# },
|
559
|
-
# authenticate_cognito_config: {
|
560
|
-
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
561
|
-
# user_pool_client_id: "AuthenticateCognitoActionUserPoolClientId", # required
|
562
|
-
# user_pool_domain: "AuthenticateCognitoActionUserPoolDomain", # required
|
563
|
-
# session_cookie_name: "AuthenticateCognitoActionSessionCookieName",
|
564
|
-
# scope: "AuthenticateCognitoActionScope",
|
565
|
-
# session_timeout: 1,
|
566
|
-
# authentication_request_extra_params: {
|
567
|
-
# "AuthenticateCognitoActionAuthenticationRequestParamName" => "AuthenticateCognitoActionAuthenticationRequestParamValue",
|
568
|
-
# },
|
569
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
570
|
-
# },
|
571
|
-
# order: 1,
|
572
|
-
# redirect_config: {
|
573
|
-
# protocol: "RedirectActionProtocol",
|
574
|
-
# port: "RedirectActionPort",
|
575
|
-
# host: "RedirectActionHost",
|
576
|
-
# path: "RedirectActionPath",
|
577
|
-
# query: "RedirectActionQuery",
|
578
|
-
# status_code: "HTTP_301", # required, accepts HTTP_301, HTTP_302
|
579
|
-
# },
|
580
|
-
# fixed_response_config: {
|
581
|
-
# message_body: "FixedResponseActionMessage",
|
582
|
-
# status_code: "FixedResponseActionStatusCode", # required
|
583
|
-
# content_type: "FixedResponseActionContentType",
|
584
|
-
# },
|
585
|
-
# forward_config: {
|
586
|
-
# target_groups: [
|
587
|
-
# {
|
588
|
-
# target_group_arn: "TargetGroupArn",
|
589
|
-
# weight: 1,
|
590
|
-
# },
|
591
|
-
# ],
|
592
|
-
# target_group_stickiness_config: {
|
593
|
-
# enabled: false,
|
594
|
-
# duration_seconds: 1,
|
595
|
-
# },
|
596
|
-
# },
|
597
|
-
# },
|
598
|
-
# ],
|
599
|
-
# alpn_policy: ["AlpnPolicyValue"],
|
600
|
-
# tags: [
|
601
|
-
# {
|
602
|
-
# key: "TagKey", # required
|
603
|
-
# value: "TagValue",
|
604
|
-
# },
|
605
|
-
# ],
|
606
|
-
# }
|
607
|
-
#
|
608
393
|
# @!attribute [rw] load_balancer_arn
|
609
394
|
# The Amazon Resource Name (ARN) of the load balancer.
|
610
395
|
# @return [String]
|
@@ -701,33 +486,6 @@ module Aws::ElasticLoadBalancingV2
|
|
701
486
|
include Aws::Structure
|
702
487
|
end
|
703
488
|
|
704
|
-
# @note When making an API call, you may pass CreateLoadBalancerInput
|
705
|
-
# data as a hash:
|
706
|
-
#
|
707
|
-
# {
|
708
|
-
# name: "LoadBalancerName", # required
|
709
|
-
# subnets: ["SubnetId"],
|
710
|
-
# subnet_mappings: [
|
711
|
-
# {
|
712
|
-
# subnet_id: "SubnetId",
|
713
|
-
# allocation_id: "AllocationId",
|
714
|
-
# private_i_pv_4_address: "PrivateIPv4Address",
|
715
|
-
# i_pv_6_address: "IPv6Address",
|
716
|
-
# },
|
717
|
-
# ],
|
718
|
-
# security_groups: ["SecurityGroupId"],
|
719
|
-
# scheme: "internet-facing", # accepts internet-facing, internal
|
720
|
-
# tags: [
|
721
|
-
# {
|
722
|
-
# key: "TagKey", # required
|
723
|
-
# value: "TagValue",
|
724
|
-
# },
|
725
|
-
# ],
|
726
|
-
# type: "application", # accepts application, network, gateway
|
727
|
-
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
728
|
-
# customer_owned_ipv_4_pool: "CustomerOwnedIpv4Pool",
|
729
|
-
# }
|
730
|
-
#
|
731
489
|
# @!attribute [rw] name
|
732
490
|
# The name of the load balancer.
|
733
491
|
#
|
@@ -857,110 +615,6 @@ module Aws::ElasticLoadBalancingV2
|
|
857
615
|
include Aws::Structure
|
858
616
|
end
|
859
617
|
|
860
|
-
# @note When making an API call, you may pass CreateRuleInput
|
861
|
-
# data as a hash:
|
862
|
-
#
|
863
|
-
# {
|
864
|
-
# listener_arn: "ListenerArn", # required
|
865
|
-
# conditions: [ # required
|
866
|
-
# {
|
867
|
-
# field: "ConditionFieldName",
|
868
|
-
# values: ["StringValue"],
|
869
|
-
# host_header_config: {
|
870
|
-
# values: ["StringValue"],
|
871
|
-
# },
|
872
|
-
# path_pattern_config: {
|
873
|
-
# values: ["StringValue"],
|
874
|
-
# },
|
875
|
-
# http_header_config: {
|
876
|
-
# http_header_name: "HttpHeaderConditionName",
|
877
|
-
# values: ["StringValue"],
|
878
|
-
# },
|
879
|
-
# query_string_config: {
|
880
|
-
# values: [
|
881
|
-
# {
|
882
|
-
# key: "StringValue",
|
883
|
-
# value: "StringValue",
|
884
|
-
# },
|
885
|
-
# ],
|
886
|
-
# },
|
887
|
-
# http_request_method_config: {
|
888
|
-
# values: ["StringValue"],
|
889
|
-
# },
|
890
|
-
# source_ip_config: {
|
891
|
-
# values: ["StringValue"],
|
892
|
-
# },
|
893
|
-
# },
|
894
|
-
# ],
|
895
|
-
# priority: 1, # required
|
896
|
-
# actions: [ # required
|
897
|
-
# {
|
898
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
899
|
-
# target_group_arn: "TargetGroupArn",
|
900
|
-
# authenticate_oidc_config: {
|
901
|
-
# issuer: "AuthenticateOidcActionIssuer", # required
|
902
|
-
# authorization_endpoint: "AuthenticateOidcActionAuthorizationEndpoint", # required
|
903
|
-
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
904
|
-
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
905
|
-
# client_id: "AuthenticateOidcActionClientId", # required
|
906
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
907
|
-
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
908
|
-
# scope: "AuthenticateOidcActionScope",
|
909
|
-
# session_timeout: 1,
|
910
|
-
# authentication_request_extra_params: {
|
911
|
-
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
912
|
-
# },
|
913
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
914
|
-
# use_existing_client_secret: false,
|
915
|
-
# },
|
916
|
-
# authenticate_cognito_config: {
|
917
|
-
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
918
|
-
# user_pool_client_id: "AuthenticateCognitoActionUserPoolClientId", # required
|
919
|
-
# user_pool_domain: "AuthenticateCognitoActionUserPoolDomain", # required
|
920
|
-
# session_cookie_name: "AuthenticateCognitoActionSessionCookieName",
|
921
|
-
# scope: "AuthenticateCognitoActionScope",
|
922
|
-
# session_timeout: 1,
|
923
|
-
# authentication_request_extra_params: {
|
924
|
-
# "AuthenticateCognitoActionAuthenticationRequestParamName" => "AuthenticateCognitoActionAuthenticationRequestParamValue",
|
925
|
-
# },
|
926
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
927
|
-
# },
|
928
|
-
# order: 1,
|
929
|
-
# redirect_config: {
|
930
|
-
# protocol: "RedirectActionProtocol",
|
931
|
-
# port: "RedirectActionPort",
|
932
|
-
# host: "RedirectActionHost",
|
933
|
-
# path: "RedirectActionPath",
|
934
|
-
# query: "RedirectActionQuery",
|
935
|
-
# status_code: "HTTP_301", # required, accepts HTTP_301, HTTP_302
|
936
|
-
# },
|
937
|
-
# fixed_response_config: {
|
938
|
-
# message_body: "FixedResponseActionMessage",
|
939
|
-
# status_code: "FixedResponseActionStatusCode", # required
|
940
|
-
# content_type: "FixedResponseActionContentType",
|
941
|
-
# },
|
942
|
-
# forward_config: {
|
943
|
-
# target_groups: [
|
944
|
-
# {
|
945
|
-
# target_group_arn: "TargetGroupArn",
|
946
|
-
# weight: 1,
|
947
|
-
# },
|
948
|
-
# ],
|
949
|
-
# target_group_stickiness_config: {
|
950
|
-
# enabled: false,
|
951
|
-
# duration_seconds: 1,
|
952
|
-
# },
|
953
|
-
# },
|
954
|
-
# },
|
955
|
-
# ],
|
956
|
-
# tags: [
|
957
|
-
# {
|
958
|
-
# key: "TagKey", # required
|
959
|
-
# value: "TagValue",
|
960
|
-
# },
|
961
|
-
# ],
|
962
|
-
# }
|
963
|
-
#
|
964
618
|
# @!attribute [rw] listener_arn
|
965
619
|
# The Amazon Resource Name (ARN) of the listener.
|
966
620
|
# @return [String]
|
@@ -1006,37 +660,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1006
660
|
include Aws::Structure
|
1007
661
|
end
|
1008
662
|
|
1009
|
-
# @note When making an API call, you may pass CreateTargetGroupInput
|
1010
|
-
# data as a hash:
|
1011
|
-
#
|
1012
|
-
# {
|
1013
|
-
# name: "TargetGroupName", # required
|
1014
|
-
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
1015
|
-
# protocol_version: "ProtocolVersion",
|
1016
|
-
# port: 1,
|
1017
|
-
# vpc_id: "VpcId",
|
1018
|
-
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
1019
|
-
# health_check_port: "HealthCheckPort",
|
1020
|
-
# health_check_enabled: false,
|
1021
|
-
# health_check_path: "Path",
|
1022
|
-
# health_check_interval_seconds: 1,
|
1023
|
-
# health_check_timeout_seconds: 1,
|
1024
|
-
# healthy_threshold_count: 1,
|
1025
|
-
# unhealthy_threshold_count: 1,
|
1026
|
-
# matcher: {
|
1027
|
-
# http_code: "HttpCode",
|
1028
|
-
# grpc_code: "GrpcCode",
|
1029
|
-
# },
|
1030
|
-
# target_type: "instance", # accepts instance, ip, lambda, alb
|
1031
|
-
# tags: [
|
1032
|
-
# {
|
1033
|
-
# key: "TagKey", # required
|
1034
|
-
# value: "TagValue",
|
1035
|
-
# },
|
1036
|
-
# ],
|
1037
|
-
# ip_address_type: "ipv4", # accepts ipv4, ipv6
|
1038
|
-
# }
|
1039
|
-
#
|
1040
663
|
# @!attribute [rw] name
|
1041
664
|
# The name of the target group.
|
1042
665
|
#
|
@@ -1133,7 +756,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1133
756
|
# The number of consecutive health check successes required before
|
1134
757
|
# considering a target healthy. The range is 2-10. If the target group
|
1135
758
|
# protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the default is
|
1136
|
-
# 5. For target groups with a protocol of GENEVE, the default is
|
759
|
+
# 5. For target groups with a protocol of GENEVE, the default is 5. If
|
1137
760
|
# the target type is `lambda`, the default is 5.
|
1138
761
|
# @return [Integer]
|
1139
762
|
#
|
@@ -1142,7 +765,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1142
765
|
# considering a target unhealthy. The range is 2-10. If the target
|
1143
766
|
# group protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS, the
|
1144
767
|
# default is 2. For target groups with a protocol of GENEVE, the
|
1145
|
-
# default is
|
768
|
+
# default is 2. If the target type is `lambda`, the default is 5.
|
1146
769
|
# @return [Integer]
|
1147
770
|
#
|
1148
771
|
# @!attribute [rw] matcher
|
@@ -1219,13 +842,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1219
842
|
include Aws::Structure
|
1220
843
|
end
|
1221
844
|
|
1222
|
-
# @note When making an API call, you may pass DeleteListenerInput
|
1223
|
-
# data as a hash:
|
1224
|
-
#
|
1225
|
-
# {
|
1226
|
-
# listener_arn: "ListenerArn", # required
|
1227
|
-
# }
|
1228
|
-
#
|
1229
845
|
# @!attribute [rw] listener_arn
|
1230
846
|
# The Amazon Resource Name (ARN) of the listener.
|
1231
847
|
# @return [String]
|
@@ -1242,13 +858,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1242
858
|
#
|
1243
859
|
class DeleteListenerOutput < Aws::EmptyStructure; end
|
1244
860
|
|
1245
|
-
# @note When making an API call, you may pass DeleteLoadBalancerInput
|
1246
|
-
# data as a hash:
|
1247
|
-
#
|
1248
|
-
# {
|
1249
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
1250
|
-
# }
|
1251
|
-
#
|
1252
861
|
# @!attribute [rw] load_balancer_arn
|
1253
862
|
# The Amazon Resource Name (ARN) of the load balancer.
|
1254
863
|
# @return [String]
|
@@ -1265,13 +874,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1265
874
|
#
|
1266
875
|
class DeleteLoadBalancerOutput < Aws::EmptyStructure; end
|
1267
876
|
|
1268
|
-
# @note When making an API call, you may pass DeleteRuleInput
|
1269
|
-
# data as a hash:
|
1270
|
-
#
|
1271
|
-
# {
|
1272
|
-
# rule_arn: "RuleArn", # required
|
1273
|
-
# }
|
1274
|
-
#
|
1275
877
|
# @!attribute [rw] rule_arn
|
1276
878
|
# The Amazon Resource Name (ARN) of the rule.
|
1277
879
|
# @return [String]
|
@@ -1288,13 +890,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1288
890
|
#
|
1289
891
|
class DeleteRuleOutput < Aws::EmptyStructure; end
|
1290
892
|
|
1291
|
-
# @note When making an API call, you may pass DeleteTargetGroupInput
|
1292
|
-
# data as a hash:
|
1293
|
-
#
|
1294
|
-
# {
|
1295
|
-
# target_group_arn: "TargetGroupArn", # required
|
1296
|
-
# }
|
1297
|
-
#
|
1298
893
|
# @!attribute [rw] target_group_arn
|
1299
894
|
# The Amazon Resource Name (ARN) of the target group.
|
1300
895
|
# @return [String]
|
@@ -1311,20 +906,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1311
906
|
#
|
1312
907
|
class DeleteTargetGroupOutput < Aws::EmptyStructure; end
|
1313
908
|
|
1314
|
-
# @note When making an API call, you may pass DeregisterTargetsInput
|
1315
|
-
# data as a hash:
|
1316
|
-
#
|
1317
|
-
# {
|
1318
|
-
# target_group_arn: "TargetGroupArn", # required
|
1319
|
-
# targets: [ # required
|
1320
|
-
# {
|
1321
|
-
# id: "TargetId", # required
|
1322
|
-
# port: 1,
|
1323
|
-
# availability_zone: "ZoneName",
|
1324
|
-
# },
|
1325
|
-
# ],
|
1326
|
-
# }
|
1327
|
-
#
|
1328
909
|
# @!attribute [rw] target_group_arn
|
1329
910
|
# The Amazon Resource Name (ARN) of the target group.
|
1330
911
|
# @return [String]
|
@@ -1348,14 +929,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1348
929
|
#
|
1349
930
|
class DeregisterTargetsOutput < Aws::EmptyStructure; end
|
1350
931
|
|
1351
|
-
# @note When making an API call, you may pass DescribeAccountLimitsInput
|
1352
|
-
# data as a hash:
|
1353
|
-
#
|
1354
|
-
# {
|
1355
|
-
# marker: "Marker",
|
1356
|
-
# page_size: 1,
|
1357
|
-
# }
|
1358
|
-
#
|
1359
932
|
# @!attribute [rw] marker
|
1360
933
|
# The marker for the next set of results. (You received this marker
|
1361
934
|
# from a previous call.)
|
@@ -1392,15 +965,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1392
965
|
include Aws::Structure
|
1393
966
|
end
|
1394
967
|
|
1395
|
-
# @note When making an API call, you may pass DescribeListenerCertificatesInput
|
1396
|
-
# data as a hash:
|
1397
|
-
#
|
1398
|
-
# {
|
1399
|
-
# listener_arn: "ListenerArn", # required
|
1400
|
-
# marker: "Marker",
|
1401
|
-
# page_size: 1,
|
1402
|
-
# }
|
1403
|
-
#
|
1404
968
|
# @!attribute [rw] listener_arn
|
1405
969
|
# The Amazon Resource Names (ARN) of the listener.
|
1406
970
|
# @return [String]
|
@@ -1442,16 +1006,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1442
1006
|
include Aws::Structure
|
1443
1007
|
end
|
1444
1008
|
|
1445
|
-
# @note When making an API call, you may pass DescribeListenersInput
|
1446
|
-
# data as a hash:
|
1447
|
-
#
|
1448
|
-
# {
|
1449
|
-
# load_balancer_arn: "LoadBalancerArn",
|
1450
|
-
# listener_arns: ["ListenerArn"],
|
1451
|
-
# marker: "Marker",
|
1452
|
-
# page_size: 1,
|
1453
|
-
# }
|
1454
|
-
#
|
1455
1009
|
# @!attribute [rw] load_balancer_arn
|
1456
1010
|
# The Amazon Resource Name (ARN) of the load balancer.
|
1457
1011
|
# @return [String]
|
@@ -1498,13 +1052,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1498
1052
|
include Aws::Structure
|
1499
1053
|
end
|
1500
1054
|
|
1501
|
-
# @note When making an API call, you may pass DescribeLoadBalancerAttributesInput
|
1502
|
-
# data as a hash:
|
1503
|
-
#
|
1504
|
-
# {
|
1505
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
1506
|
-
# }
|
1507
|
-
#
|
1508
1055
|
# @!attribute [rw] load_balancer_arn
|
1509
1056
|
# The Amazon Resource Name (ARN) of the load balancer.
|
1510
1057
|
# @return [String]
|
@@ -1529,16 +1076,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1529
1076
|
include Aws::Structure
|
1530
1077
|
end
|
1531
1078
|
|
1532
|
-
# @note When making an API call, you may pass DescribeLoadBalancersInput
|
1533
|
-
# data as a hash:
|
1534
|
-
#
|
1535
|
-
# {
|
1536
|
-
# load_balancer_arns: ["LoadBalancerArn"],
|
1537
|
-
# names: ["LoadBalancerName"],
|
1538
|
-
# marker: "Marker",
|
1539
|
-
# page_size: 1,
|
1540
|
-
# }
|
1541
|
-
#
|
1542
1079
|
# @!attribute [rw] load_balancer_arns
|
1543
1080
|
# The Amazon Resource Names (ARN) of the load balancers. You can
|
1544
1081
|
# specify up to 20 load balancers in a single call.
|
@@ -1586,16 +1123,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1586
1123
|
include Aws::Structure
|
1587
1124
|
end
|
1588
1125
|
|
1589
|
-
# @note When making an API call, you may pass DescribeRulesInput
|
1590
|
-
# data as a hash:
|
1591
|
-
#
|
1592
|
-
# {
|
1593
|
-
# listener_arn: "ListenerArn",
|
1594
|
-
# rule_arns: ["RuleArn"],
|
1595
|
-
# marker: "Marker",
|
1596
|
-
# page_size: 1,
|
1597
|
-
# }
|
1598
|
-
#
|
1599
1126
|
# @!attribute [rw] listener_arn
|
1600
1127
|
# The Amazon Resource Name (ARN) of the listener.
|
1601
1128
|
# @return [String]
|
@@ -1642,16 +1169,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1642
1169
|
include Aws::Structure
|
1643
1170
|
end
|
1644
1171
|
|
1645
|
-
# @note When making an API call, you may pass DescribeSSLPoliciesInput
|
1646
|
-
# data as a hash:
|
1647
|
-
#
|
1648
|
-
# {
|
1649
|
-
# names: ["SslPolicyName"],
|
1650
|
-
# marker: "Marker",
|
1651
|
-
# page_size: 1,
|
1652
|
-
# load_balancer_type: "application", # accepts application, network, gateway
|
1653
|
-
# }
|
1654
|
-
#
|
1655
1172
|
# @!attribute [rw] names
|
1656
1173
|
# The names of the policies.
|
1657
1174
|
# @return [Array<String>]
|
@@ -1699,13 +1216,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1699
1216
|
include Aws::Structure
|
1700
1217
|
end
|
1701
1218
|
|
1702
|
-
# @note When making an API call, you may pass DescribeTagsInput
|
1703
|
-
# data as a hash:
|
1704
|
-
#
|
1705
|
-
# {
|
1706
|
-
# resource_arns: ["ResourceArn"], # required
|
1707
|
-
# }
|
1708
|
-
#
|
1709
1219
|
# @!attribute [rw] resource_arns
|
1710
1220
|
# The Amazon Resource Names (ARN) of the resources. You can specify up
|
1711
1221
|
# to 20 resources in a single call.
|
@@ -1731,13 +1241,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1731
1241
|
include Aws::Structure
|
1732
1242
|
end
|
1733
1243
|
|
1734
|
-
# @note When making an API call, you may pass DescribeTargetGroupAttributesInput
|
1735
|
-
# data as a hash:
|
1736
|
-
#
|
1737
|
-
# {
|
1738
|
-
# target_group_arn: "TargetGroupArn", # required
|
1739
|
-
# }
|
1740
|
-
#
|
1741
1244
|
# @!attribute [rw] target_group_arn
|
1742
1245
|
# The Amazon Resource Name (ARN) of the target group.
|
1743
1246
|
# @return [String]
|
@@ -1762,17 +1265,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1762
1265
|
include Aws::Structure
|
1763
1266
|
end
|
1764
1267
|
|
1765
|
-
# @note When making an API call, you may pass DescribeTargetGroupsInput
|
1766
|
-
# data as a hash:
|
1767
|
-
#
|
1768
|
-
# {
|
1769
|
-
# load_balancer_arn: "LoadBalancerArn",
|
1770
|
-
# target_group_arns: ["TargetGroupArn"],
|
1771
|
-
# names: ["TargetGroupName"],
|
1772
|
-
# marker: "Marker",
|
1773
|
-
# page_size: 1,
|
1774
|
-
# }
|
1775
|
-
#
|
1776
1268
|
# @!attribute [rw] load_balancer_arn
|
1777
1269
|
# The Amazon Resource Name (ARN) of the load balancer.
|
1778
1270
|
# @return [String]
|
@@ -1824,20 +1316,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1824
1316
|
include Aws::Structure
|
1825
1317
|
end
|
1826
1318
|
|
1827
|
-
# @note When making an API call, you may pass DescribeTargetHealthInput
|
1828
|
-
# data as a hash:
|
1829
|
-
#
|
1830
|
-
# {
|
1831
|
-
# target_group_arn: "TargetGroupArn", # required
|
1832
|
-
# targets: [
|
1833
|
-
# {
|
1834
|
-
# id: "TargetId", # required
|
1835
|
-
# port: 1,
|
1836
|
-
# availability_zone: "ZoneName",
|
1837
|
-
# },
|
1838
|
-
# ],
|
1839
|
-
# }
|
1840
|
-
#
|
1841
1319
|
# @!attribute [rw] target_group_arn
|
1842
1320
|
# The Amazon Resource Name (ARN) of the target group.
|
1843
1321
|
# @return [String]
|
@@ -1893,15 +1371,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1893
1371
|
|
1894
1372
|
# Information about an action that returns a custom HTTP response.
|
1895
1373
|
#
|
1896
|
-
# @note When making an API call, you may pass FixedResponseActionConfig
|
1897
|
-
# data as a hash:
|
1898
|
-
#
|
1899
|
-
# {
|
1900
|
-
# message_body: "FixedResponseActionMessage",
|
1901
|
-
# status_code: "FixedResponseActionStatusCode", # required
|
1902
|
-
# content_type: "FixedResponseActionContentType",
|
1903
|
-
# }
|
1904
|
-
#
|
1905
1374
|
# @!attribute [rw] message_body
|
1906
1375
|
# The message.
|
1907
1376
|
# @return [String]
|
@@ -1929,22 +1398,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1929
1398
|
|
1930
1399
|
# Information about a forward action.
|
1931
1400
|
#
|
1932
|
-
# @note When making an API call, you may pass ForwardActionConfig
|
1933
|
-
# data as a hash:
|
1934
|
-
#
|
1935
|
-
# {
|
1936
|
-
# target_groups: [
|
1937
|
-
# {
|
1938
|
-
# target_group_arn: "TargetGroupArn",
|
1939
|
-
# weight: 1,
|
1940
|
-
# },
|
1941
|
-
# ],
|
1942
|
-
# target_group_stickiness_config: {
|
1943
|
-
# enabled: false,
|
1944
|
-
# duration_seconds: 1,
|
1945
|
-
# },
|
1946
|
-
# }
|
1947
|
-
#
|
1948
1401
|
# @!attribute [rw] target_groups
|
1949
1402
|
# The target groups. For Network Load Balancers, you can specify a
|
1950
1403
|
# single target group.
|
@@ -1972,13 +1425,6 @@ module Aws::ElasticLoadBalancingV2
|
|
1972
1425
|
|
1973
1426
|
# Information about a host header condition.
|
1974
1427
|
#
|
1975
|
-
# @note When making an API call, you may pass HostHeaderConditionConfig
|
1976
|
-
# data as a hash:
|
1977
|
-
#
|
1978
|
-
# {
|
1979
|
-
# values: ["StringValue"],
|
1980
|
-
# }
|
1981
|
-
#
|
1982
1428
|
# @!attribute [rw] values
|
1983
1429
|
# The host names. The maximum size of each name is 128 characters. The
|
1984
1430
|
# comparison is case insensitive. The following wildcard characters
|
@@ -2002,14 +1448,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2002
1448
|
# There is a set of standard HTTP header fields. You can also define
|
2003
1449
|
# custom HTTP header fields.
|
2004
1450
|
#
|
2005
|
-
# @note When making an API call, you may pass HttpHeaderConditionConfig
|
2006
|
-
# data as a hash:
|
2007
|
-
#
|
2008
|
-
# {
|
2009
|
-
# http_header_name: "HttpHeaderConditionName",
|
2010
|
-
# values: ["StringValue"],
|
2011
|
-
# }
|
2012
|
-
#
|
2013
1451
|
# @!attribute [rw] http_header_name
|
2014
1452
|
# The name of the HTTP header field. The maximum size is 40
|
2015
1453
|
# characters. The header name is case insensitive. The allowed
|
@@ -2053,13 +1491,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2053
1491
|
#
|
2054
1492
|
# [1]: https://www.iana.org/assignments/http-methods/http-methods.xhtml
|
2055
1493
|
#
|
2056
|
-
# @note When making an API call, you may pass HttpRequestMethodConditionConfig
|
2057
|
-
# data as a hash:
|
2058
|
-
#
|
2059
|
-
# {
|
2060
|
-
# values: ["StringValue"],
|
2061
|
-
# }
|
2062
|
-
#
|
2063
1494
|
# @!attribute [rw] values
|
2064
1495
|
# The name of the request method. The maximum size is 40 characters.
|
2065
1496
|
# The allowed characters are A-Z, hyphen (-), and underscore (\_). The
|
@@ -2357,14 +1788,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2357
1788
|
|
2358
1789
|
# Information about a load balancer attribute.
|
2359
1790
|
#
|
2360
|
-
# @note When making an API call, you may pass LoadBalancerAttribute
|
2361
|
-
# data as a hash:
|
2362
|
-
#
|
2363
|
-
# {
|
2364
|
-
# key: "LoadBalancerAttributeKey",
|
2365
|
-
# value: "LoadBalancerAttributeValue",
|
2366
|
-
# }
|
2367
|
-
#
|
2368
1791
|
# @!attribute [rw] key
|
2369
1792
|
# The name of the attribute.
|
2370
1793
|
#
|
@@ -2515,14 +1938,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2515
1938
|
# target. If the protocol version is gRPC, these are gRPC codes.
|
2516
1939
|
# Otherwise, these are HTTP codes.
|
2517
1940
|
#
|
2518
|
-
# @note When making an API call, you may pass Matcher
|
2519
|
-
# data as a hash:
|
2520
|
-
#
|
2521
|
-
# {
|
2522
|
-
# http_code: "HttpCode",
|
2523
|
-
# grpc_code: "GrpcCode",
|
2524
|
-
# }
|
2525
|
-
#
|
2526
1941
|
# @!attribute [rw] http_code
|
2527
1942
|
# For Application Load Balancers, you can specify values between 200
|
2528
1943
|
# and 499, with the default value being 200. You can specify multiple
|
@@ -2555,83 +1970,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2555
1970
|
include Aws::Structure
|
2556
1971
|
end
|
2557
1972
|
|
2558
|
-
# @note When making an API call, you may pass ModifyListenerInput
|
2559
|
-
# data as a hash:
|
2560
|
-
#
|
2561
|
-
# {
|
2562
|
-
# listener_arn: "ListenerArn", # required
|
2563
|
-
# port: 1,
|
2564
|
-
# protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
2565
|
-
# ssl_policy: "SslPolicyName",
|
2566
|
-
# certificates: [
|
2567
|
-
# {
|
2568
|
-
# certificate_arn: "CertificateArn",
|
2569
|
-
# is_default: false,
|
2570
|
-
# },
|
2571
|
-
# ],
|
2572
|
-
# default_actions: [
|
2573
|
-
# {
|
2574
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
2575
|
-
# target_group_arn: "TargetGroupArn",
|
2576
|
-
# authenticate_oidc_config: {
|
2577
|
-
# issuer: "AuthenticateOidcActionIssuer", # required
|
2578
|
-
# authorization_endpoint: "AuthenticateOidcActionAuthorizationEndpoint", # required
|
2579
|
-
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
2580
|
-
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
2581
|
-
# client_id: "AuthenticateOidcActionClientId", # required
|
2582
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
2583
|
-
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
2584
|
-
# scope: "AuthenticateOidcActionScope",
|
2585
|
-
# session_timeout: 1,
|
2586
|
-
# authentication_request_extra_params: {
|
2587
|
-
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
2588
|
-
# },
|
2589
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
2590
|
-
# use_existing_client_secret: false,
|
2591
|
-
# },
|
2592
|
-
# authenticate_cognito_config: {
|
2593
|
-
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
2594
|
-
# user_pool_client_id: "AuthenticateCognitoActionUserPoolClientId", # required
|
2595
|
-
# user_pool_domain: "AuthenticateCognitoActionUserPoolDomain", # required
|
2596
|
-
# session_cookie_name: "AuthenticateCognitoActionSessionCookieName",
|
2597
|
-
# scope: "AuthenticateCognitoActionScope",
|
2598
|
-
# session_timeout: 1,
|
2599
|
-
# authentication_request_extra_params: {
|
2600
|
-
# "AuthenticateCognitoActionAuthenticationRequestParamName" => "AuthenticateCognitoActionAuthenticationRequestParamValue",
|
2601
|
-
# },
|
2602
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
2603
|
-
# },
|
2604
|
-
# order: 1,
|
2605
|
-
# redirect_config: {
|
2606
|
-
# protocol: "RedirectActionProtocol",
|
2607
|
-
# port: "RedirectActionPort",
|
2608
|
-
# host: "RedirectActionHost",
|
2609
|
-
# path: "RedirectActionPath",
|
2610
|
-
# query: "RedirectActionQuery",
|
2611
|
-
# status_code: "HTTP_301", # required, accepts HTTP_301, HTTP_302
|
2612
|
-
# },
|
2613
|
-
# fixed_response_config: {
|
2614
|
-
# message_body: "FixedResponseActionMessage",
|
2615
|
-
# status_code: "FixedResponseActionStatusCode", # required
|
2616
|
-
# content_type: "FixedResponseActionContentType",
|
2617
|
-
# },
|
2618
|
-
# forward_config: {
|
2619
|
-
# target_groups: [
|
2620
|
-
# {
|
2621
|
-
# target_group_arn: "TargetGroupArn",
|
2622
|
-
# weight: 1,
|
2623
|
-
# },
|
2624
|
-
# ],
|
2625
|
-
# target_group_stickiness_config: {
|
2626
|
-
# enabled: false,
|
2627
|
-
# duration_seconds: 1,
|
2628
|
-
# },
|
2629
|
-
# },
|
2630
|
-
# },
|
2631
|
-
# ],
|
2632
|
-
# alpn_policy: ["AlpnPolicyValue"],
|
2633
|
-
# }
|
2634
|
-
#
|
2635
1973
|
# @!attribute [rw] listener_arn
|
2636
1974
|
# The Amazon Resource Name (ARN) of the listener.
|
2637
1975
|
# @return [String]
|
@@ -2723,19 +2061,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2723
2061
|
include Aws::Structure
|
2724
2062
|
end
|
2725
2063
|
|
2726
|
-
# @note When making an API call, you may pass ModifyLoadBalancerAttributesInput
|
2727
|
-
# data as a hash:
|
2728
|
-
#
|
2729
|
-
# {
|
2730
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
2731
|
-
# attributes: [ # required
|
2732
|
-
# {
|
2733
|
-
# key: "LoadBalancerAttributeKey",
|
2734
|
-
# value: "LoadBalancerAttributeValue",
|
2735
|
-
# },
|
2736
|
-
# ],
|
2737
|
-
# }
|
2738
|
-
#
|
2739
2064
|
# @!attribute [rw] load_balancer_arn
|
2740
2065
|
# The Amazon Resource Name (ARN) of the load balancer.
|
2741
2066
|
# @return [String]
|
@@ -2765,103 +2090,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2765
2090
|
include Aws::Structure
|
2766
2091
|
end
|
2767
2092
|
|
2768
|
-
# @note When making an API call, you may pass ModifyRuleInput
|
2769
|
-
# data as a hash:
|
2770
|
-
#
|
2771
|
-
# {
|
2772
|
-
# rule_arn: "RuleArn", # required
|
2773
|
-
# conditions: [
|
2774
|
-
# {
|
2775
|
-
# field: "ConditionFieldName",
|
2776
|
-
# values: ["StringValue"],
|
2777
|
-
# host_header_config: {
|
2778
|
-
# values: ["StringValue"],
|
2779
|
-
# },
|
2780
|
-
# path_pattern_config: {
|
2781
|
-
# values: ["StringValue"],
|
2782
|
-
# },
|
2783
|
-
# http_header_config: {
|
2784
|
-
# http_header_name: "HttpHeaderConditionName",
|
2785
|
-
# values: ["StringValue"],
|
2786
|
-
# },
|
2787
|
-
# query_string_config: {
|
2788
|
-
# values: [
|
2789
|
-
# {
|
2790
|
-
# key: "StringValue",
|
2791
|
-
# value: "StringValue",
|
2792
|
-
# },
|
2793
|
-
# ],
|
2794
|
-
# },
|
2795
|
-
# http_request_method_config: {
|
2796
|
-
# values: ["StringValue"],
|
2797
|
-
# },
|
2798
|
-
# source_ip_config: {
|
2799
|
-
# values: ["StringValue"],
|
2800
|
-
# },
|
2801
|
-
# },
|
2802
|
-
# ],
|
2803
|
-
# actions: [
|
2804
|
-
# {
|
2805
|
-
# type: "forward", # required, accepts forward, authenticate-oidc, authenticate-cognito, redirect, fixed-response
|
2806
|
-
# target_group_arn: "TargetGroupArn",
|
2807
|
-
# authenticate_oidc_config: {
|
2808
|
-
# issuer: "AuthenticateOidcActionIssuer", # required
|
2809
|
-
# authorization_endpoint: "AuthenticateOidcActionAuthorizationEndpoint", # required
|
2810
|
-
# token_endpoint: "AuthenticateOidcActionTokenEndpoint", # required
|
2811
|
-
# user_info_endpoint: "AuthenticateOidcActionUserInfoEndpoint", # required
|
2812
|
-
# client_id: "AuthenticateOidcActionClientId", # required
|
2813
|
-
# client_secret: "AuthenticateOidcActionClientSecret",
|
2814
|
-
# session_cookie_name: "AuthenticateOidcActionSessionCookieName",
|
2815
|
-
# scope: "AuthenticateOidcActionScope",
|
2816
|
-
# session_timeout: 1,
|
2817
|
-
# authentication_request_extra_params: {
|
2818
|
-
# "AuthenticateOidcActionAuthenticationRequestParamName" => "AuthenticateOidcActionAuthenticationRequestParamValue",
|
2819
|
-
# },
|
2820
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
2821
|
-
# use_existing_client_secret: false,
|
2822
|
-
# },
|
2823
|
-
# authenticate_cognito_config: {
|
2824
|
-
# user_pool_arn: "AuthenticateCognitoActionUserPoolArn", # required
|
2825
|
-
# user_pool_client_id: "AuthenticateCognitoActionUserPoolClientId", # required
|
2826
|
-
# user_pool_domain: "AuthenticateCognitoActionUserPoolDomain", # required
|
2827
|
-
# session_cookie_name: "AuthenticateCognitoActionSessionCookieName",
|
2828
|
-
# scope: "AuthenticateCognitoActionScope",
|
2829
|
-
# session_timeout: 1,
|
2830
|
-
# authentication_request_extra_params: {
|
2831
|
-
# "AuthenticateCognitoActionAuthenticationRequestParamName" => "AuthenticateCognitoActionAuthenticationRequestParamValue",
|
2832
|
-
# },
|
2833
|
-
# on_unauthenticated_request: "deny", # accepts deny, allow, authenticate
|
2834
|
-
# },
|
2835
|
-
# order: 1,
|
2836
|
-
# redirect_config: {
|
2837
|
-
# protocol: "RedirectActionProtocol",
|
2838
|
-
# port: "RedirectActionPort",
|
2839
|
-
# host: "RedirectActionHost",
|
2840
|
-
# path: "RedirectActionPath",
|
2841
|
-
# query: "RedirectActionQuery",
|
2842
|
-
# status_code: "HTTP_301", # required, accepts HTTP_301, HTTP_302
|
2843
|
-
# },
|
2844
|
-
# fixed_response_config: {
|
2845
|
-
# message_body: "FixedResponseActionMessage",
|
2846
|
-
# status_code: "FixedResponseActionStatusCode", # required
|
2847
|
-
# content_type: "FixedResponseActionContentType",
|
2848
|
-
# },
|
2849
|
-
# forward_config: {
|
2850
|
-
# target_groups: [
|
2851
|
-
# {
|
2852
|
-
# target_group_arn: "TargetGroupArn",
|
2853
|
-
# weight: 1,
|
2854
|
-
# },
|
2855
|
-
# ],
|
2856
|
-
# target_group_stickiness_config: {
|
2857
|
-
# enabled: false,
|
2858
|
-
# duration_seconds: 1,
|
2859
|
-
# },
|
2860
|
-
# },
|
2861
|
-
# },
|
2862
|
-
# ],
|
2863
|
-
# }
|
2864
|
-
#
|
2865
2093
|
# @!attribute [rw] rule_arn
|
2866
2094
|
# The Amazon Resource Name (ARN) of the rule.
|
2867
2095
|
# @return [String]
|
@@ -2896,19 +2124,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2896
2124
|
include Aws::Structure
|
2897
2125
|
end
|
2898
2126
|
|
2899
|
-
# @note When making an API call, you may pass ModifyTargetGroupAttributesInput
|
2900
|
-
# data as a hash:
|
2901
|
-
#
|
2902
|
-
# {
|
2903
|
-
# target_group_arn: "TargetGroupArn", # required
|
2904
|
-
# attributes: [ # required
|
2905
|
-
# {
|
2906
|
-
# key: "TargetGroupAttributeKey",
|
2907
|
-
# value: "TargetGroupAttributeValue",
|
2908
|
-
# },
|
2909
|
-
# ],
|
2910
|
-
# }
|
2911
|
-
#
|
2912
2127
|
# @!attribute [rw] target_group_arn
|
2913
2128
|
# The Amazon Resource Name (ARN) of the target group.
|
2914
2129
|
# @return [String]
|
@@ -2938,25 +2153,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2938
2153
|
include Aws::Structure
|
2939
2154
|
end
|
2940
2155
|
|
2941
|
-
# @note When making an API call, you may pass ModifyTargetGroupInput
|
2942
|
-
# data as a hash:
|
2943
|
-
#
|
2944
|
-
# {
|
2945
|
-
# target_group_arn: "TargetGroupArn", # required
|
2946
|
-
# health_check_protocol: "HTTP", # accepts HTTP, HTTPS, TCP, TLS, UDP, TCP_UDP, GENEVE
|
2947
|
-
# health_check_port: "HealthCheckPort",
|
2948
|
-
# health_check_path: "Path",
|
2949
|
-
# health_check_enabled: false,
|
2950
|
-
# health_check_interval_seconds: 1,
|
2951
|
-
# health_check_timeout_seconds: 1,
|
2952
|
-
# healthy_threshold_count: 1,
|
2953
|
-
# unhealthy_threshold_count: 1,
|
2954
|
-
# matcher: {
|
2955
|
-
# http_code: "HttpCode",
|
2956
|
-
# grpc_code: "GrpcCode",
|
2957
|
-
# },
|
2958
|
-
# }
|
2959
|
-
#
|
2960
2156
|
# @!attribute [rw] target_group_arn
|
2961
2157
|
# The Amazon Resource Name (ARN) of the target group.
|
2962
2158
|
# @return [String]
|
@@ -3058,13 +2254,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3058
2254
|
|
3059
2255
|
# Information about a path pattern condition.
|
3060
2256
|
#
|
3061
|
-
# @note When making an API call, you may pass PathPatternConditionConfig
|
3062
|
-
# data as a hash:
|
3063
|
-
#
|
3064
|
-
# {
|
3065
|
-
# values: ["StringValue"],
|
3066
|
-
# }
|
3067
|
-
#
|
3068
2257
|
# @!attribute [rw] values
|
3069
2258
|
# The path patterns to compare against the request URL. The maximum
|
3070
2259
|
# size of each string is 128 characters. The comparison is case
|
@@ -3099,18 +2288,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3099
2288
|
# '&' characters. The allowed characters are specified by RFC
|
3100
2289
|
# 3986. Any character can be percentage encoded.
|
3101
2290
|
#
|
3102
|
-
# @note When making an API call, you may pass QueryStringConditionConfig
|
3103
|
-
# data as a hash:
|
3104
|
-
#
|
3105
|
-
# {
|
3106
|
-
# values: [
|
3107
|
-
# {
|
3108
|
-
# key: "StringValue",
|
3109
|
-
# value: "StringValue",
|
3110
|
-
# },
|
3111
|
-
# ],
|
3112
|
-
# }
|
3113
|
-
#
|
3114
2291
|
# @!attribute [rw] values
|
3115
2292
|
# The key/value pairs or values to find in the query string. The
|
3116
2293
|
# maximum size of each string is 128 characters. The comparison is
|
@@ -3134,14 +2311,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3134
2311
|
|
3135
2312
|
# Information about a key/value pair.
|
3136
2313
|
#
|
3137
|
-
# @note When making an API call, you may pass QueryStringKeyValuePair
|
3138
|
-
# data as a hash:
|
3139
|
-
#
|
3140
|
-
# {
|
3141
|
-
# key: "StringValue",
|
3142
|
-
# value: "StringValue",
|
3143
|
-
# }
|
3144
|
-
#
|
3145
2314
|
# @!attribute [rw] key
|
3146
2315
|
# The key. You can omit the key.
|
3147
2316
|
# @return [String]
|
@@ -3183,18 +2352,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3183
2352
|
# hostname to "example.#\\\{host\\}", or the query to
|
3184
2353
|
# "#\\\{query\\}&value=xyz".
|
3185
2354
|
#
|
3186
|
-
# @note When making an API call, you may pass RedirectActionConfig
|
3187
|
-
# data as a hash:
|
3188
|
-
#
|
3189
|
-
# {
|
3190
|
-
# protocol: "RedirectActionProtocol",
|
3191
|
-
# port: "RedirectActionPort",
|
3192
|
-
# host: "RedirectActionHost",
|
3193
|
-
# path: "RedirectActionPath",
|
3194
|
-
# query: "RedirectActionQuery",
|
3195
|
-
# status_code: "HTTP_301", # required, accepts HTTP_301, HTTP_302
|
3196
|
-
# }
|
3197
|
-
#
|
3198
2355
|
# @!attribute [rw] protocol
|
3199
2356
|
# The protocol. You can specify HTTP, HTTPS, or #\\\{protocol\\}. You
|
3200
2357
|
# can redirect HTTP to HTTP, HTTP to HTTPS, and HTTPS to HTTPS. You
|
@@ -3240,20 +2397,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3240
2397
|
include Aws::Structure
|
3241
2398
|
end
|
3242
2399
|
|
3243
|
-
# @note When making an API call, you may pass RegisterTargetsInput
|
3244
|
-
# data as a hash:
|
3245
|
-
#
|
3246
|
-
# {
|
3247
|
-
# target_group_arn: "TargetGroupArn", # required
|
3248
|
-
# targets: [ # required
|
3249
|
-
# {
|
3250
|
-
# id: "TargetId", # required
|
3251
|
-
# port: 1,
|
3252
|
-
# availability_zone: "ZoneName",
|
3253
|
-
# },
|
3254
|
-
# ],
|
3255
|
-
# }
|
3256
|
-
#
|
3257
2400
|
# @!attribute [rw] target_group_arn
|
3258
2401
|
# The Amazon Resource Name (ARN) of the target group.
|
3259
2402
|
# @return [String]
|
@@ -3275,19 +2418,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3275
2418
|
#
|
3276
2419
|
class RegisterTargetsOutput < Aws::EmptyStructure; end
|
3277
2420
|
|
3278
|
-
# @note When making an API call, you may pass RemoveListenerCertificatesInput
|
3279
|
-
# data as a hash:
|
3280
|
-
#
|
3281
|
-
# {
|
3282
|
-
# listener_arn: "ListenerArn", # required
|
3283
|
-
# certificates: [ # required
|
3284
|
-
# {
|
3285
|
-
# certificate_arn: "CertificateArn",
|
3286
|
-
# is_default: false,
|
3287
|
-
# },
|
3288
|
-
# ],
|
3289
|
-
# }
|
3290
|
-
#
|
3291
2421
|
# @!attribute [rw] listener_arn
|
3292
2422
|
# The Amazon Resource Name (ARN) of the listener.
|
3293
2423
|
# @return [String]
|
@@ -3311,14 +2441,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3311
2441
|
#
|
3312
2442
|
class RemoveListenerCertificatesOutput < Aws::EmptyStructure; end
|
3313
2443
|
|
3314
|
-
# @note When making an API call, you may pass RemoveTagsInput
|
3315
|
-
# data as a hash:
|
3316
|
-
#
|
3317
|
-
# {
|
3318
|
-
# resource_arns: ["ResourceArn"], # required
|
3319
|
-
# tag_keys: ["TagKey"], # required
|
3320
|
-
# }
|
3321
|
-
#
|
3322
2444
|
# @!attribute [rw] resource_arns
|
3323
2445
|
# The Amazon Resource Name (ARN) of the resource.
|
3324
2446
|
# @return [Array<String>]
|
@@ -3393,38 +2515,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3393
2515
|
# of the following conditions: `http-header` and `query-string`. Note
|
3394
2516
|
# that the value for a condition cannot be empty.
|
3395
2517
|
#
|
3396
|
-
# @note When making an API call, you may pass RuleCondition
|
3397
|
-
# data as a hash:
|
3398
|
-
#
|
3399
|
-
# {
|
3400
|
-
# field: "ConditionFieldName",
|
3401
|
-
# values: ["StringValue"],
|
3402
|
-
# host_header_config: {
|
3403
|
-
# values: ["StringValue"],
|
3404
|
-
# },
|
3405
|
-
# path_pattern_config: {
|
3406
|
-
# values: ["StringValue"],
|
3407
|
-
# },
|
3408
|
-
# http_header_config: {
|
3409
|
-
# http_header_name: "HttpHeaderConditionName",
|
3410
|
-
# values: ["StringValue"],
|
3411
|
-
# },
|
3412
|
-
# query_string_config: {
|
3413
|
-
# values: [
|
3414
|
-
# {
|
3415
|
-
# key: "StringValue",
|
3416
|
-
# value: "StringValue",
|
3417
|
-
# },
|
3418
|
-
# ],
|
3419
|
-
# },
|
3420
|
-
# http_request_method_config: {
|
3421
|
-
# values: ["StringValue"],
|
3422
|
-
# },
|
3423
|
-
# source_ip_config: {
|
3424
|
-
# values: ["StringValue"],
|
3425
|
-
# },
|
3426
|
-
# }
|
3427
|
-
#
|
3428
2518
|
# @!attribute [rw] field
|
3429
2519
|
# The field in the HTTP request. The following are the possible
|
3430
2520
|
# values:
|
@@ -3532,14 +2622,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3532
2622
|
|
3533
2623
|
# Information about the priorities for the rules for a listener.
|
3534
2624
|
#
|
3535
|
-
# @note When making an API call, you may pass RulePriorityPair
|
3536
|
-
# data as a hash:
|
3537
|
-
#
|
3538
|
-
# {
|
3539
|
-
# rule_arn: "RuleArn",
|
3540
|
-
# priority: 1,
|
3541
|
-
# }
|
3542
|
-
#
|
3543
2625
|
# @!attribute [rw] rule_arn
|
3544
2626
|
# The Amazon Resource Name (ARN) of the rule.
|
3545
2627
|
# @return [String]
|
@@ -3563,14 +2645,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3563
2645
|
#
|
3564
2646
|
class SSLPolicyNotFoundException < Aws::EmptyStructure; end
|
3565
2647
|
|
3566
|
-
# @note When making an API call, you may pass SetIpAddressTypeInput
|
3567
|
-
# data as a hash:
|
3568
|
-
#
|
3569
|
-
# {
|
3570
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
3571
|
-
# ip_address_type: "ipv4", # required, accepts ipv4, dualstack
|
3572
|
-
# }
|
3573
|
-
#
|
3574
2648
|
# @!attribute [rw] load_balancer_arn
|
3575
2649
|
# The Amazon Resource Name (ARN) of the load balancer.
|
3576
2650
|
# @return [String]
|
@@ -3603,18 +2677,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3603
2677
|
include Aws::Structure
|
3604
2678
|
end
|
3605
2679
|
|
3606
|
-
# @note When making an API call, you may pass SetRulePrioritiesInput
|
3607
|
-
# data as a hash:
|
3608
|
-
#
|
3609
|
-
# {
|
3610
|
-
# rule_priorities: [ # required
|
3611
|
-
# {
|
3612
|
-
# rule_arn: "RuleArn",
|
3613
|
-
# priority: 1,
|
3614
|
-
# },
|
3615
|
-
# ],
|
3616
|
-
# }
|
3617
|
-
#
|
3618
2680
|
# @!attribute [rw] rule_priorities
|
3619
2681
|
# The rule priorities.
|
3620
2682
|
# @return [Array<Types::RulePriorityPair>]
|
@@ -3639,14 +2701,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3639
2701
|
include Aws::Structure
|
3640
2702
|
end
|
3641
2703
|
|
3642
|
-
# @note When making an API call, you may pass SetSecurityGroupsInput
|
3643
|
-
# data as a hash:
|
3644
|
-
#
|
3645
|
-
# {
|
3646
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
3647
|
-
# security_groups: ["SecurityGroupId"], # required
|
3648
|
-
# }
|
3649
|
-
#
|
3650
2704
|
# @!attribute [rw] load_balancer_arn
|
3651
2705
|
# The Amazon Resource Name (ARN) of the load balancer.
|
3652
2706
|
# @return [String]
|
@@ -3676,23 +2730,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3676
2730
|
include Aws::Structure
|
3677
2731
|
end
|
3678
2732
|
|
3679
|
-
# @note When making an API call, you may pass SetSubnetsInput
|
3680
|
-
# data as a hash:
|
3681
|
-
#
|
3682
|
-
# {
|
3683
|
-
# load_balancer_arn: "LoadBalancerArn", # required
|
3684
|
-
# subnets: ["SubnetId"],
|
3685
|
-
# subnet_mappings: [
|
3686
|
-
# {
|
3687
|
-
# subnet_id: "SubnetId",
|
3688
|
-
# allocation_id: "AllocationId",
|
3689
|
-
# private_i_pv_4_address: "PrivateIPv4Address",
|
3690
|
-
# i_pv_6_address: "IPv6Address",
|
3691
|
-
# },
|
3692
|
-
# ],
|
3693
|
-
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
3694
|
-
# }
|
3695
|
-
#
|
3696
2733
|
# @!attribute [rw] load_balancer_arn
|
3697
2734
|
# The Amazon Resource Name (ARN) of the load balancer.
|
3698
2735
|
# @return [String]
|
@@ -3782,13 +2819,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3782
2819
|
# proxy, this is the IP address of the proxy not the IP address of the
|
3783
2820
|
# client.
|
3784
2821
|
#
|
3785
|
-
# @note When making an API call, you may pass SourceIpConditionConfig
|
3786
|
-
# data as a hash:
|
3787
|
-
#
|
3788
|
-
# {
|
3789
|
-
# values: ["StringValue"],
|
3790
|
-
# }
|
3791
|
-
#
|
3792
2822
|
# @!attribute [rw] values
|
3793
2823
|
# The source IP addresses, in CIDR format. You can use both IPv4 and
|
3794
2824
|
# IPv6 addresses. Wildcards are not supported.
|
@@ -3839,16 +2869,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3839
2869
|
|
3840
2870
|
# Information about a subnet mapping.
|
3841
2871
|
#
|
3842
|
-
# @note When making an API call, you may pass SubnetMapping
|
3843
|
-
# data as a hash:
|
3844
|
-
#
|
3845
|
-
# {
|
3846
|
-
# subnet_id: "SubnetId",
|
3847
|
-
# allocation_id: "AllocationId",
|
3848
|
-
# private_i_pv_4_address: "PrivateIPv4Address",
|
3849
|
-
# i_pv_6_address: "IPv6Address",
|
3850
|
-
# }
|
3851
|
-
#
|
3852
2872
|
# @!attribute [rw] subnet_id
|
3853
2873
|
# The ID of the subnet.
|
3854
2874
|
# @return [String]
|
@@ -3886,14 +2906,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3886
2906
|
|
3887
2907
|
# Information about a tag.
|
3888
2908
|
#
|
3889
|
-
# @note When making an API call, you may pass Tag
|
3890
|
-
# data as a hash:
|
3891
|
-
#
|
3892
|
-
# {
|
3893
|
-
# key: "TagKey", # required
|
3894
|
-
# value: "TagValue",
|
3895
|
-
# }
|
3896
|
-
#
|
3897
2909
|
# @!attribute [rw] key
|
3898
2910
|
# The key of the tag.
|
3899
2911
|
# @return [String]
|
@@ -3932,15 +2944,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3932
2944
|
|
3933
2945
|
# Information about a target.
|
3934
2946
|
#
|
3935
|
-
# @note When making an API call, you may pass TargetDescription
|
3936
|
-
# data as a hash:
|
3937
|
-
#
|
3938
|
-
# {
|
3939
|
-
# id: "TargetId", # required
|
3940
|
-
# port: 1,
|
3941
|
-
# availability_zone: "ZoneName",
|
3942
|
-
# }
|
3943
|
-
#
|
3944
2947
|
# @!attribute [rw] id
|
3945
2948
|
# The ID of the target. If the target type of the target group is
|
3946
2949
|
# `instance`, specify an instance ID. If the target type is `ip`,
|
@@ -4118,14 +3121,6 @@ module Aws::ElasticLoadBalancingV2
|
|
4118
3121
|
|
4119
3122
|
# Information about a target group attribute.
|
4120
3123
|
#
|
4121
|
-
# @note When making an API call, you may pass TargetGroupAttribute
|
4122
|
-
# data as a hash:
|
4123
|
-
#
|
4124
|
-
# {
|
4125
|
-
# key: "TargetGroupAttributeKey",
|
4126
|
-
# value: "TargetGroupAttributeValue",
|
4127
|
-
# }
|
4128
|
-
#
|
4129
3124
|
# @!attribute [rw] key
|
4130
3125
|
# The name of the attribute.
|
4131
3126
|
#
|
@@ -4291,14 +3286,6 @@ module Aws::ElasticLoadBalancingV2
|
|
4291
3286
|
|
4292
3287
|
# Information about the target group stickiness for a rule.
|
4293
3288
|
#
|
4294
|
-
# @note When making an API call, you may pass TargetGroupStickinessConfig
|
4295
|
-
# data as a hash:
|
4296
|
-
#
|
4297
|
-
# {
|
4298
|
-
# enabled: false,
|
4299
|
-
# duration_seconds: 1,
|
4300
|
-
# }
|
4301
|
-
#
|
4302
3289
|
# @!attribute [rw] enabled
|
4303
3290
|
# Indicates whether target group stickiness is enabled.
|
4304
3291
|
# @return [Boolean]
|
@@ -4321,14 +3308,6 @@ module Aws::ElasticLoadBalancingV2
|
|
4321
3308
|
# Information about how traffic will be distributed between multiple
|
4322
3309
|
# target groups in a forward rule.
|
4323
3310
|
#
|
4324
|
-
# @note When making an API call, you may pass TargetGroupTuple
|
4325
|
-
# data as a hash:
|
4326
|
-
#
|
4327
|
-
# {
|
4328
|
-
# target_group_arn: "TargetGroupArn",
|
4329
|
-
# weight: 1,
|
4330
|
-
# }
|
4331
|
-
#
|
4332
3311
|
# @!attribute [rw] target_group_arn
|
4333
3312
|
# The Amazon Resource Name (ARN) of the target group.
|
4334
3313
|
# @return [String]
|