Class: Aws::ElasticLoadBalancingV2::Types::ModifyListenerInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::ModifyListenerInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alpn_policy ⇒ Array<String>
[TLS listeners] The name of the Application-Layer Protocol Negotiation (ALPN) policy.
-
#certificates ⇒ Array<Types::Certificate>
[HTTPS and TLS listeners] The default certificate for the listener.
-
#default_actions ⇒ Array<Types::Action>
The actions for the default rule.
-
#listener_arn ⇒ String
The Amazon Resource Name (ARN) of the listener.
-
#mutual_authentication ⇒ Types::MutualAuthenticationAttributes
The mutual authentication configuration information.
-
#port ⇒ Integer
The port for connections from clients to the load balancer.
-
#protocol ⇒ String
The protocol for connections from clients to the load balancer.
-
#ssl_policy ⇒ String
[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.
Instance Attribute Details
#alpn_policy ⇒ Array<String>
[TLS listeners] The name of the Application-Layer Protocol Negotiation (ALPN) policy. You can specify one policy name. The following are the possible values:
-
‘HTTP1Only`
-
‘HTTP2Only`
-
‘HTTP2Optional`
-
‘HTTP2Preferred`
-
‘None`
For more information, see [ALPN policies] in the *Network Load Balancers Guide*.
[1]: docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#alpn-policies
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2614 class ModifyListenerInput < Struct.new( :listener_arn, :port, :protocol, :ssl_policy, :certificates, :default_actions, :alpn_policy, :mutual_authentication) SENSITIVE = [] include Aws::Structure end |
#certificates ⇒ Array<Types::Certificate>
[HTTPS and TLS listeners] The default certificate for the listener. You must provide exactly one certificate. Set ‘CertificateArn` to the certificate ARN but do not set `IsDefault`.
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2614 class ModifyListenerInput < Struct.new( :listener_arn, :port, :protocol, :ssl_policy, :certificates, :default_actions, :alpn_policy, :mutual_authentication) SENSITIVE = [] include Aws::Structure end |
#default_actions ⇒ Array<Types::Action>
The actions for the default rule.
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2614 class ModifyListenerInput < Struct.new( :listener_arn, :port, :protocol, :ssl_policy, :certificates, :default_actions, :alpn_policy, :mutual_authentication) SENSITIVE = [] include Aws::Structure end |
#listener_arn ⇒ String
The Amazon Resource Name (ARN) of the listener.
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2614 class ModifyListenerInput < Struct.new( :listener_arn, :port, :protocol, :ssl_policy, :certificates, :default_actions, :alpn_policy, :mutual_authentication) SENSITIVE = [] include Aws::Structure end |
#mutual_authentication ⇒ Types::MutualAuthenticationAttributes
The mutual authentication configuration information.
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2614 class ModifyListenerInput < Struct.new( :listener_arn, :port, :protocol, :ssl_policy, :certificates, :default_actions, :alpn_policy, :mutual_authentication) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port for connections from clients to the load balancer. You cannot specify a port for a Gateway Load Balancer.
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2614 class ModifyListenerInput < Struct.new( :listener_arn, :port, :protocol, :ssl_policy, :certificates, :default_actions, :alpn_policy, :mutual_authentication) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol for connections from clients to the load balancer. Application Load Balancers support the HTTP and HTTPS protocols. Network Load Balancers support the TCP, TLS, UDP, and TCP_UDP protocols. You can’t change the protocol to UDP or TCP_UDP if dual-stack mode is enabled. You cannot specify a protocol for a Gateway Load Balancer.
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2614 class ModifyListenerInput < Struct.new( :listener_arn, :port, :protocol, :ssl_policy, :certificates, :default_actions, :alpn_policy, :mutual_authentication) SENSITIVE = [] include Aws::Structure end |
#ssl_policy ⇒ String
[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.
For more information, see [Security policies] in the *Application Load Balancers Guide* or [Security policies] in the *Network Load Balancers Guide*.
[1]: docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html#describe-ssl-policies [2]: docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#describe-ssl-policies
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2614 class ModifyListenerInput < Struct.new( :listener_arn, :port, :protocol, :ssl_policy, :certificates, :default_actions, :alpn_policy, :mutual_authentication) SENSITIVE = [] include Aws::Structure end |