[][src]Struct rusoto_elbv2::AuthenticateCognitoActionConfig

pub struct AuthenticateCognitoActionConfig {
    pub authentication_request_extra_params: Option<HashMap<String, String>>,
    pub on_unauthenticated_request: Option<String>,
    pub scope: Option<String>,
    pub session_cookie_name: Option<String>,
    pub session_timeout: Option<i64>,
    pub user_pool_arn: String,
    pub user_pool_client_id: String,
    pub user_pool_domain: String,
}

Request parameters to use when integrating with Amazon Cognito to authenticate users.

Fields

authentication_request_extra_params: Option<HashMap<String, String>>

The query parameters (up to 10) to include in the redirect request to the authorization endpoint.

on_unauthenticated_request: Option<String>

The behavior if the user is not authenticated. The following are possible values:

scope: Option<String>

The set of user claims to be requested from the IdP. The default is openid.

To verify which scope values your IdP supports and how to separate multiple values, see the documentation for your IdP.

session_cookie_name: Option<String>

The name of the cookie used to maintain session information. The default is AWSELBAuthSessionCookie.

session_timeout: Option<i64>

The maximum duration of the authentication session, in seconds. The default is 604800 seconds (7 days).

user_pool_arn: String

The Amazon Resource Name (ARN) of the Amazon Cognito user pool.

user_pool_client_id: String

The ID of the Amazon Cognito user pool client.

user_pool_domain: String

The domain prefix or fully-qualified domain name of the Amazon Cognito user pool.

Trait Implementations

impl PartialEq<AuthenticateCognitoActionConfig> for AuthenticateCognitoActionConfig[src]

impl Default for AuthenticateCognitoActionConfig[src]

impl Clone for AuthenticateCognitoActionConfig[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for AuthenticateCognitoActionConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self