Class: Aws::ElasticLoadBalancing::Types::Listener
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancing::Types::Listener
- Defined in:
- gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb
Overview
Information about a listener.
For information about the protocols and the ports supported by Elastic Load Balancing, see Listeners for Your Classic Load Balancer in the Classic Load Balancers Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_port ⇒ Integer
The port on which the instance is listening.
-
#instance_protocol ⇒ String
The protocol to use for routing traffic to instances: HTTP, HTTPS, TCP, or SSL.
-
#load_balancer_port ⇒ Integer
The port on which the load balancer is listening.
-
#protocol ⇒ String
The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL.
-
#ssl_certificate_id ⇒ String
The Amazon Resource Name (ARN) of the server certificate.
Instance Attribute Details
#instance_port ⇒ Integer
The port on which the instance is listening.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb', line 1236 class Listener < Struct.new( :protocol, :load_balancer_port, :instance_protocol, :instance_port, :ssl_certificate_id) SENSITIVE = [] include Aws::Structure end |
#instance_protocol ⇒ String
The protocol to use for routing traffic to instances: HTTP, HTTPS, TCP, or SSL.
If the front-end protocol is TCP or SSL, the back-end protocol must be TCP or SSL. If the front-end protocol is HTTP or HTTPS, the back-end protocol must be HTTP or HTTPS.
If there is another listener with the same InstancePort
whose
InstanceProtocol
is secure, (HTTPS or SSL), the listener's
InstanceProtocol
must also be secure.
If there is another listener with the same InstancePort
whose
InstanceProtocol
is HTTP or TCP, the listener's
InstanceProtocol
must be HTTP or TCP.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb', line 1236 class Listener < Struct.new( :protocol, :load_balancer_port, :instance_protocol, :instance_port, :ssl_certificate_id) SENSITIVE = [] include Aws::Structure end |
#load_balancer_port ⇒ Integer
The port on which the load balancer is listening. On EC2-VPC, you can specify any port from the range 1-65535. On EC2-Classic, you can specify any port from the following list: 25, 80, 443, 465, 587, 1024-65535.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb', line 1236 class Listener < Struct.new( :protocol, :load_balancer_port, :instance_protocol, :instance_port, :ssl_certificate_id) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb', line 1236 class Listener < Struct.new( :protocol, :load_balancer_port, :instance_protocol, :instance_port, :ssl_certificate_id) SENSITIVE = [] include Aws::Structure end |
#ssl_certificate_id ⇒ String
The Amazon Resource Name (ARN) of the server certificate.
1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb', line 1236 class Listener < Struct.new( :protocol, :load_balancer_port, :instance_protocol, :instance_port, :ssl_certificate_id) SENSITIVE = [] include Aws::Structure end |