Struct aws_sdk_cognitoidentity::operation::lookup_developer_identity::builders::LookupDeveloperIdentityOutputBuilder
source · #[non_exhaustive]pub struct LookupDeveloperIdentityOutputBuilder { /* private fields */ }Expand description
A builder for LookupDeveloperIdentityOutput.
Implementations§
source§impl LookupDeveloperIdentityOutputBuilder
impl LookupDeveloperIdentityOutputBuilder
sourcepub fn identity_id(self, input: impl Into<String>) -> Self
pub fn identity_id(self, input: impl Into<String>) -> Self
A unique identifier in the format REGION:GUID.
sourcepub fn set_identity_id(self, input: Option<String>) -> Self
pub fn set_identity_id(self, input: Option<String>) -> Self
A unique identifier in the format REGION:GUID.
sourcepub fn get_identity_id(&self) -> &Option<String>
pub fn get_identity_id(&self) -> &Option<String>
A unique identifier in the format REGION:GUID.
sourcepub fn developer_user_identifier_list(self, input: impl Into<String>) -> Self
pub fn developer_user_identifier_list(self, input: impl Into<String>) -> Self
Appends an item to developer_user_identifier_list.
To override the contents of this collection use set_developer_user_identifier_list.
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.
sourcepub fn set_developer_user_identifier_list(
self,
input: Option<Vec<String>>
) -> Self
pub fn set_developer_user_identifier_list( self, input: Option<Vec<String>> ) -> Self
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.
sourcepub fn get_developer_user_identifier_list(&self) -> &Option<Vec<String>>
pub fn get_developer_user_identifier_list(&self) -> &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.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &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.
sourcepub fn build(self) -> LookupDeveloperIdentityOutput
pub fn build(self) -> LookupDeveloperIdentityOutput
Consumes the builder and constructs a LookupDeveloperIdentityOutput.
Trait Implementations§
source§impl Clone for LookupDeveloperIdentityOutputBuilder
impl Clone for LookupDeveloperIdentityOutputBuilder
source§fn clone(&self) -> LookupDeveloperIdentityOutputBuilder
fn clone(&self) -> LookupDeveloperIdentityOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for LookupDeveloperIdentityOutputBuilder
impl Default for LookupDeveloperIdentityOutputBuilder
source§fn default() -> LookupDeveloperIdentityOutputBuilder
fn default() -> LookupDeveloperIdentityOutputBuilder
source§impl PartialEq for LookupDeveloperIdentityOutputBuilder
impl PartialEq for LookupDeveloperIdentityOutputBuilder
source§fn eq(&self, other: &LookupDeveloperIdentityOutputBuilder) -> bool
fn eq(&self, other: &LookupDeveloperIdentityOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LookupDeveloperIdentityOutputBuilder
Auto Trait Implementations§
impl Freeze for LookupDeveloperIdentityOutputBuilder
impl RefUnwindSafe for LookupDeveloperIdentityOutputBuilder
impl Send for LookupDeveloperIdentityOutputBuilder
impl Sync for LookupDeveloperIdentityOutputBuilder
impl Unpin for LookupDeveloperIdentityOutputBuilder
impl UnwindSafe for LookupDeveloperIdentityOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more