Struct aws_sdk_datazone::operation::search_user_profiles::builders::SearchUserProfilesFluentBuilder
source · pub struct SearchUserProfilesFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to SearchUserProfiles
.
Searches user profiles in Amazon DataZone.
Implementations§
source§impl SearchUserProfilesFluentBuilder
impl SearchUserProfilesFluentBuilder
sourcepub fn as_input(&self) -> &SearchUserProfilesInputBuilder
pub fn as_input(&self) -> &SearchUserProfilesInputBuilder
Access the SearchUserProfiles as a reference.
sourcepub async fn send(
self
) -> Result<SearchUserProfilesOutput, SdkError<SearchUserProfilesError, HttpResponse>>
pub async fn send( self ) -> Result<SearchUserProfilesOutput, SdkError<SearchUserProfilesError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<SearchUserProfilesOutput, SearchUserProfilesError, Self>, SdkError<SearchUserProfilesError>>
pub async fn customize( self ) -> Result<CustomizableOperation<SearchUserProfilesOutput, SearchUserProfilesError, Self>, SdkError<SearchUserProfilesError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> SearchUserProfilesPaginator
pub fn into_paginator(self) -> SearchUserProfilesPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
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.
Trait Implementations§
source§impl Clone for SearchUserProfilesFluentBuilder
impl Clone for SearchUserProfilesFluentBuilder
source§fn clone(&self) -> SearchUserProfilesFluentBuilder
fn clone(&self) -> SearchUserProfilesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more