#[non_exhaustive]pub struct ModifyListenerInput { /* private fields */ }
Implementations§
source§impl ModifyListenerInput
impl ModifyListenerInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyListener, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyListener, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ModifyListener
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModifyListenerInput
.
source§impl ModifyListenerInput
impl ModifyListenerInput
sourcepub fn listener_arn(&self) -> Option<&str>
pub fn listener_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the listener.
sourcepub fn port(&self) -> Option<i32>
pub fn port(&self) -> Option<i32>
The port for connections from clients to the load balancer. You cannot specify a port for a Gateway Load Balancer.
sourcepub fn protocol(&self) -> Option<&ProtocolEnum>
pub fn protocol(&self) -> Option<&ProtocolEnum>
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.
sourcepub fn ssl_policy(&self) -> Option<&str>
pub fn ssl_policy(&self) -> Option<&str>
[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.
sourcepub fn certificates(&self) -> Option<&[Certificate]>
pub fn certificates(&self) -> Option<&[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
.
sourcepub fn default_actions(&self) -> Option<&[Action]>
pub fn default_actions(&self) -> Option<&[Action]>
The actions for the default rule.
sourcepub fn alpn_policy(&self) -> Option<&[String]>
pub fn alpn_policy(&self) -> Option<&[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.
Trait Implementations§
source§impl Clone for ModifyListenerInput
impl Clone for ModifyListenerInput
source§fn clone(&self) -> ModifyListenerInput
fn clone(&self) -> ModifyListenerInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyListenerInput
impl Debug for ModifyListenerInput
source§impl PartialEq<ModifyListenerInput> for ModifyListenerInput
impl PartialEq<ModifyListenerInput> for ModifyListenerInput
source§fn eq(&self, other: &ModifyListenerInput) -> bool
fn eq(&self, other: &ModifyListenerInput) -> bool
self
and other
values to be equal, and is used
by ==
.