[−][src]Struct rusoto_cognito_idp::InitiateAuthRequest
Initiates the authentication request.
Fields
analytics_metadata: Option<AnalyticsMetadataType>The Amazon Pinpoint analytics metadata for collecting metrics for InitiateAuth calls.
auth_flow: StringThe authentication flow for this call to execute. The API action will depend on this value. For example:
-
REFRESH_TOKEN_AUTHwill take in a valid refresh token and return new tokens. -
USER_SRP_AUTHwill take inUSERNAMEandSRP_Aand return the SRP variables to be used for next challenge execution. -
USER_PASSWORD_AUTHwill take inUSERNAMEandPASSWORDand return the next challenge or tokens.
Valid values include:
-
USER_SRP_AUTH: Authentication flow for the Secure Remote Password (SRP) protocol. -
REFRESH_TOKEN_AUTH/REFRESH_TOKEN: Authentication flow for refreshing the access token and ID token by supplying a valid refresh token. -
CUSTOM_AUTH: Custom authentication flow. -
USER_PASSWORD_AUTH: Non-SRP authentication flow; USERNAME and PASSWORD are passed directly. If a user migration Lambda trigger is set, this flow will invoke the user migration Lambda if the USERNAME is not found in the user pool.
ADMIN_NO_SRP_AUTH is not a valid value.
auth_parameters: Option<HashMap<String, String>>The authentication parameters. These are inputs corresponding to the AuthFlow that you are invoking. The required values depend on the value of AuthFlow:
-
For
USERSRPAUTH:USERNAME(required),SRPA(required),SECRETHASH(required if the app client is configured with a client secret),DEVICEKEY -
For
REFRESHTOKENAUTH/REFRESHTOKEN:REFRESHTOKEN(required),SECRETHASH(required if the app client is configured with a client secret),DEVICEKEY -
For
CUSTOMAUTH:USERNAME(required),SECRETHASH(if app client is configured with client secret),DEVICEKEY
client_id: StringThe app client ID.
client_metadata: Option<HashMap<String, String>>This is a random key-value pair map which can contain any key and will be passed to your PreAuthentication Lambda trigger as-is. It can be used to implement additional validations around authentication.
user_context_data: Option<UserContextDataType>Contextual data such as the user's device fingerprint, IP address, or location used for evaluating the risk of an unexpected event by Amazon Cognito advanced security.
Trait Implementations
impl PartialEq<InitiateAuthRequest> for InitiateAuthRequest[src]
fn eq(&self, other: &InitiateAuthRequest) -> bool[src]
fn ne(&self, other: &InitiateAuthRequest) -> bool[src]
impl Default for InitiateAuthRequest[src]
fn default() -> InitiateAuthRequest[src]
impl Clone for InitiateAuthRequest[src]
fn clone(&self) -> InitiateAuthRequest[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for InitiateAuthRequest[src]
impl Serialize for InitiateAuthRequest[src]
Auto Trait Implementations
impl Send for InitiateAuthRequest
impl Sync for InitiateAuthRequest
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