pub struct UnlinkDeveloperIdentityInput {
pub developer_provider_name: String,
pub developer_user_identifier: String,
pub identity_id: String,
pub identity_pool_id: String,
}Expand description
Input to the UnlinkDeveloperIdentity action.
Fields§
§developer_provider_name: StringThe "domain" by which Cognito will refer to your users.
developer_user_identifier: StringA unique ID used by your backend authentication process to identify a user.
identity_id: StringA unique identifier in the format REGION:GUID.
identity_pool_id: StringAn identity pool ID in the format REGION:GUID.
Trait Implementations§
Source§impl Clone for UnlinkDeveloperIdentityInput
impl Clone for UnlinkDeveloperIdentityInput
Source§fn clone(&self) -> UnlinkDeveloperIdentityInput
fn clone(&self) -> UnlinkDeveloperIdentityInput
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 UnlinkDeveloperIdentityInput
impl Debug for UnlinkDeveloperIdentityInput
Source§impl Default for UnlinkDeveloperIdentityInput
impl Default for UnlinkDeveloperIdentityInput
Source§fn default() -> UnlinkDeveloperIdentityInput
fn default() -> UnlinkDeveloperIdentityInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UnlinkDeveloperIdentityInput
impl PartialEq for UnlinkDeveloperIdentityInput
Source§fn eq(&self, other: &UnlinkDeveloperIdentityInput) -> bool
fn eq(&self, other: &UnlinkDeveloperIdentityInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UnlinkDeveloperIdentityInput
Auto Trait Implementations§
impl Freeze for UnlinkDeveloperIdentityInput
impl RefUnwindSafe for UnlinkDeveloperIdentityInput
impl Send for UnlinkDeveloperIdentityInput
impl Sync for UnlinkDeveloperIdentityInput
impl Unpin for UnlinkDeveloperIdentityInput
impl UnwindSafe for UnlinkDeveloperIdentityInput
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