[−][src]Struct rusoto_elbv2::AuthenticateCognitoActionConfig
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:
-
deny
- Return an HTTP 401 Unauthorized error.
-
allow
- Allow the request to be forwarded to the target.
-
authenticate
- Redirect the request to the IdP authorization endpoint. This is the default value.
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.
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]
fn eq(&self, other: &AuthenticateCognitoActionConfig) -> bool
[src]
fn ne(&self, other: &AuthenticateCognitoActionConfig) -> bool
[src]
impl Default for AuthenticateCognitoActionConfig
[src]
impl Clone for AuthenticateCognitoActionConfig
[src]
fn clone(&self) -> 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
impl Send for AuthenticateCognitoActionConfig
impl Sync for AuthenticateCognitoActionConfig
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