pub struct LookupDeveloperIdentityResponse {
pub developer_user_identifier_list: Option<Vec<String>>,
pub identity_id: Option<String>,
pub next_token: Option<String>,
}Expand description
Returned in response to a successful LookupDeveloperIdentity action.
Fields§
§developer_user_identifier_list: Option<Vec<String>>This is the list of developer user identifiers associated with an identity ID. Cognito supports the association of multiple developer user identifiers with an identity ID.
identity_id: Option<String>A unique identifier in the format REGION:GUID.
next_token: Option<String>A pagination token. The first call you make will have NextToken set to null. After that the service will return NextToken values as needed. For example, let's say you make a request with MaxResults set to 10, and there are 20 matches in the database. The service will return a pagination token as a part of the response. This token can be used to call the API again and get results starting from the 11th match.
Trait Implementations§
Source§impl Clone for LookupDeveloperIdentityResponse
impl Clone for LookupDeveloperIdentityResponse
Source§fn clone(&self) -> LookupDeveloperIdentityResponse
fn clone(&self) -> LookupDeveloperIdentityResponse
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 Default for LookupDeveloperIdentityResponse
impl Default for LookupDeveloperIdentityResponse
Source§fn default() -> LookupDeveloperIdentityResponse
fn default() -> LookupDeveloperIdentityResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LookupDeveloperIdentityResponse
impl<'de> Deserialize<'de> for LookupDeveloperIdentityResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LookupDeveloperIdentityResponse
impl PartialEq for LookupDeveloperIdentityResponse
Source§fn eq(&self, other: &LookupDeveloperIdentityResponse) -> bool
fn eq(&self, other: &LookupDeveloperIdentityResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LookupDeveloperIdentityResponse
Auto Trait Implementations§
impl Freeze for LookupDeveloperIdentityResponse
impl RefUnwindSafe for LookupDeveloperIdentityResponse
impl Send for LookupDeveloperIdentityResponse
impl Sync for LookupDeveloperIdentityResponse
impl Unpin for LookupDeveloperIdentityResponse
impl UnwindSafe for LookupDeveloperIdentityResponse
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