[−][src]Struct rusoto_cognito_identity::GetOpenIdTokenForDeveloperIdentityInput
Input to the GetOpenIdTokenForDeveloperIdentity
action.
Fields
identity_id: Option<String>
A unique identifier in the format REGION:GUID.
identity_pool_id: String
An identity pool ID in the format REGION:GUID.
logins: HashMap<String, String>
A set of optional name-value pairs that map provider names to provider tokens. Each name-value pair represents a user from a public provider or developer provider. If the user is from a developer provider, the name-value pair will follow the syntax "developer_provider_name": "developer_user_identifier"
. The developer provider is the "domain" by which Cognito will refer to your users; you provided this domain while creating/updating the identity pool. The developer user identifier is an identifier from your backend that uniquely identifies a user. When you create an identity pool, you can specify the supported logins.
token_duration: Option<i64>
The expiration time of the token, in seconds. You can specify a custom expiration time for the token so that you can cache it. If you don't provide an expiration time, the token is valid for 15 minutes. You can exchange the token with Amazon STS for temporary AWS credentials, which are valid for a maximum of one hour. The maximum token duration you can set is 24 hours. You should take care in setting the expiration time for a token, as there are significant security implications: an attacker could use a leaked token to access your AWS resources for the token's duration.
Trait Implementations
impl PartialEq<GetOpenIdTokenForDeveloperIdentityInput> for GetOpenIdTokenForDeveloperIdentityInput
[src]
fn eq(&self, other: &GetOpenIdTokenForDeveloperIdentityInput) -> bool
[src]
fn ne(&self, other: &GetOpenIdTokenForDeveloperIdentityInput) -> bool
[src]
impl Default for GetOpenIdTokenForDeveloperIdentityInput
[src]
impl Clone for GetOpenIdTokenForDeveloperIdentityInput
[src]
fn clone(&self) -> GetOpenIdTokenForDeveloperIdentityInput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for GetOpenIdTokenForDeveloperIdentityInput
[src]
impl Serialize for GetOpenIdTokenForDeveloperIdentityInput
[src]
Auto Trait Implementations
impl Send for GetOpenIdTokenForDeveloperIdentityInput
impl Sync for GetOpenIdTokenForDeveloperIdentityInput
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