Struct aws_sdk_datazone::operation::search_user_profiles::builders::SearchUserProfilesInputBuilder
source · #[non_exhaustive]pub struct SearchUserProfilesInputBuilder { /* private fields */ }
Expand description
A builder for SearchUserProfilesInput
.
Implementations§
source§impl SearchUserProfilesInputBuilder
impl SearchUserProfilesInputBuilder
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
The identifier of the Amazon DataZone domain in which you want to search user profiles.
sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
The identifier of the Amazon DataZone domain in which you want to search user profiles.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The identifier of the Amazon DataZone domain in which you want to search user profiles.
sourcepub fn user_type(self, input: UserSearchType) -> Self
pub fn user_type(self, input: UserSearchType) -> Self
Specifies the user type for the SearchUserProfiles
action.
sourcepub fn set_user_type(self, input: Option<UserSearchType>) -> Self
pub fn set_user_type(self, input: Option<UserSearchType>) -> Self
Specifies the user type for the SearchUserProfiles
action.
sourcepub fn get_user_type(&self) -> &Option<UserSearchType>
pub fn get_user_type(&self) -> &Option<UserSearchType>
Specifies the user type for the SearchUserProfiles
action.
sourcepub fn search_text(self, input: impl Into<String>) -> Self
pub fn search_text(self, input: impl Into<String>) -> Self
Specifies the text for which to search.
sourcepub fn set_search_text(self, input: Option<String>) -> Self
pub fn set_search_text(self, input: Option<String>) -> Self
Specifies the text for which to search.
sourcepub fn get_search_text(&self) -> &Option<String>
pub fn get_search_text(&self) -> &Option<String>
Specifies the text for which to search.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in a single call to SearchUserProfiles
. When the number of results to be listed is greater than the value of MaxResults
, the response contains a NextToken
value that you can use in a subsequent call to SearchUserProfiles
to list the next set of results.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in a single call to SearchUserProfiles
. When the number of results to be listed is greater than the value of MaxResults
, the response contains a NextToken
value that you can use in a subsequent call to SearchUserProfiles
to list the next set of results.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in a single call to SearchUserProfiles
. When the number of results to be listed is greater than the value of MaxResults
, the response contains a NextToken
value that you can use in a subsequent call to SearchUserProfiles
to list the next set of results.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
When the number of results is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of results, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to SearchUserProfiles
to list the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
When the number of results is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of results, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to SearchUserProfiles
to list the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
When the number of results is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of results, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to SearchUserProfiles
to list the next set of results.
sourcepub fn build(self) -> Result<SearchUserProfilesInput, BuildError>
pub fn build(self) -> Result<SearchUserProfilesInput, BuildError>
Consumes the builder and constructs a SearchUserProfilesInput
.
source§impl SearchUserProfilesInputBuilder
impl SearchUserProfilesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<SearchUserProfilesOutput, SdkError<SearchUserProfilesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<SearchUserProfilesOutput, SdkError<SearchUserProfilesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for SearchUserProfilesInputBuilder
impl Clone for SearchUserProfilesInputBuilder
source§fn clone(&self) -> SearchUserProfilesInputBuilder
fn clone(&self) -> SearchUserProfilesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SearchUserProfilesInputBuilder
impl Default for SearchUserProfilesInputBuilder
source§fn default() -> SearchUserProfilesInputBuilder
fn default() -> SearchUserProfilesInputBuilder
source§impl PartialEq for SearchUserProfilesInputBuilder
impl PartialEq for SearchUserProfilesInputBuilder
source§fn eq(&self, other: &SearchUserProfilesInputBuilder) -> bool
fn eq(&self, other: &SearchUserProfilesInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.