Struct aws_sdk_elasticloadbalancingv2::model::Listener [−][src]
#[non_exhaustive]pub struct Listener {
pub listener_arn: Option<String>,
pub load_balancer_arn: Option<String>,
pub port: Option<i32>,
pub protocol: Option<ProtocolEnum>,
pub certificates: Option<Vec<Certificate>>,
pub ssl_policy: Option<String>,
pub default_actions: Option<Vec<Action>>,
pub alpn_policy: Option<Vec<String>>,
}
Expand description
Information about a 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.listener_arn: Option<String>
The Amazon Resource Name (ARN) of the listener.
load_balancer_arn: Option<String>
The Amazon Resource Name (ARN) of the load balancer.
port: Option<i32>
The port on which the load balancer is listening.
protocol: Option<ProtocolEnum>
The protocol for connections from clients to the load balancer.
certificates: Option<Vec<Certificate>>
[HTTPS or TLS listener] The default certificate for the listener.
ssl_policy: Option<String>
[HTTPS or TLS listener] The security policy that defines which protocols and ciphers are supported.
default_actions: Option<Vec<Action>>
The default actions for the listener.
alpn_policy: Option<Vec<String>>
[TLS listener] The name of the Application-Layer Protocol Negotiation (ALPN) policy.
Implementations
The Amazon Resource Name (ARN) of the listener.
The Amazon Resource Name (ARN) of the load balancer.
The protocol for connections from clients to the load balancer.
[HTTPS or TLS listener] The default certificate for the listener.
[HTTPS or TLS listener] The security policy that defines which protocols and ciphers are supported.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Listener
impl UnwindSafe for Listener
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