[−][src]Struct rusoto_elbv2::ModifyListenerInput
Fields
certificates: Option<Vec<Certificate>>
[HTTPS and TLS listeners] The default SSL server certificate. You must provide exactly one certificate. Set CertificateArn
to the certificate ARN but do not set IsDefault
.
To create a certificate list, use AddListenerCertificates.
default_actions: Option<Vec<Action>>
The actions for the default rule. The rule must include one forward action or one or more fixed-response actions.
If the action type is forward
, you specify a target group. The protocol of the target group must be HTTP or HTTPS for an Application Load Balancer. The protocol of the target group must be TCP or TLS for a Network Load Balancer.
[HTTPS listeners] If the action type is authenticate-oidc
, you authenticate users through an identity provider that is OpenID Connect (OIDC) compliant.
[HTTPS listeners] If the action type is authenticate-cognito
, you authenticate users through the user pools supported by Amazon Cognito.
[Application Load Balancer] If the action type is redirect
, you redirect specified client requests from one URL to another.
[Application Load Balancer] If the action type is fixed-response
, you drop specified client requests and return a custom HTTP response.
listener_arn: String
The Amazon Resource Name (ARN) of the listener.
port: Option<i64>
The port for connections from clients to the load balancer.
protocol: Option<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 and TLS protocols.
ssl_policy: Option<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.
Trait Implementations
impl PartialEq<ModifyListenerInput> for ModifyListenerInput
[src]
fn eq(&self, other: &ModifyListenerInput) -> bool
[src]
fn ne(&self, other: &ModifyListenerInput) -> bool
[src]
impl Default for ModifyListenerInput
[src]
fn default() -> ModifyListenerInput
[src]
impl Clone for ModifyListenerInput
[src]
fn clone(&self) -> ModifyListenerInput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ModifyListenerInput
[src]
Auto Trait Implementations
impl Send for ModifyListenerInput
impl Sync for ModifyListenerInput
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self