pub struct GetOpenIdTokenInput {
pub identity_id: String,
pub logins: Option<HashMap<String, String>>,
}Expand description
Input to the GetOpenIdToken action.
Fields§
§identity_id: StringA unique identifier in the format REGION:GUID.
logins: Option<HashMap<String, String>>A set of optional name-value pairs that map provider names to provider tokens. When using graph.facebook.com and www.amazon.com, supply the access_token returned from the provider's authflow. For accounts.google.com, an Amazon Cognito user pool provider, or any other OpenId Connect provider, always include the id_token.
Trait Implementations§
Source§impl Clone for GetOpenIdTokenInput
impl Clone for GetOpenIdTokenInput
Source§fn clone(&self) -> GetOpenIdTokenInput
fn clone(&self) -> GetOpenIdTokenInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetOpenIdTokenInput
impl Debug for GetOpenIdTokenInput
Source§impl Default for GetOpenIdTokenInput
impl Default for GetOpenIdTokenInput
Source§fn default() -> GetOpenIdTokenInput
fn default() -> GetOpenIdTokenInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetOpenIdTokenInput
impl PartialEq for GetOpenIdTokenInput
Source§impl Serialize for GetOpenIdTokenInput
impl Serialize for GetOpenIdTokenInput
impl StructuralPartialEq for GetOpenIdTokenInput
Auto Trait Implementations§
impl Freeze for GetOpenIdTokenInput
impl RefUnwindSafe for GetOpenIdTokenInput
impl Send for GetOpenIdTokenInput
impl Sync for GetOpenIdTokenInput
impl Unpin for GetOpenIdTokenInput
impl UnwindSafe for GetOpenIdTokenInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more