Struct aws_sdk_securityhub::model::AwsElbLoadBalancerListener [−][src]
#[non_exhaustive]pub struct AwsElbLoadBalancerListener {
pub instance_port: i32,
pub instance_protocol: Option<String>,
pub load_balancer_port: i32,
pub protocol: Option<String>,
pub ssl_certificate_id: Option<String>,
}
Expand description
Information about a load balancer listener.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.instance_port: i32
The port on which the instance is listening.
instance_protocol: Option<String>
The protocol to use to route traffic to instances.
Valid values: HTTP
| HTTPS
| TCP
|
SSL
load_balancer_port: i32
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.
protocol: Option<String>
The load balancer transport protocol to use for routing.
Valid values: HTTP
| HTTPS
| TCP
|
SSL
ssl_certificate_id: Option<String>
The ARN of the server certificate.
Implementations
The port on which the instance is listening.
The protocol to use to route traffic to instances.
Valid values: HTTP
| HTTPS
| TCP
|
SSL
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.
The load balancer transport protocol to use for routing.
Valid values: HTTP
| HTTPS
| TCP
|
SSL
The ARN of the server certificate.
Creates a new builder-style object to manufacture AwsElbLoadBalancerListener
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AwsElbLoadBalancerListener
impl Send for AwsElbLoadBalancerListener
impl Sync for AwsElbLoadBalancerListener
impl Unpin for AwsElbLoadBalancerListener
impl UnwindSafe for AwsElbLoadBalancerListener
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more