#[non_exhaustive]pub struct SearchUserProfilesInput {
pub domain_identifier: Option<String>,
pub user_type: Option<UserSearchType>,
pub search_text: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_identifier: Option<String>
The identifier of the Amazon DataZone domain in which you want to search user profiles.
user_type: Option<UserSearchType>
Specifies the user type for the SearchUserProfiles
action.
search_text: Option<String>
Specifies the text for which to search.
max_results: 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.
next_token: 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.
Implementations§
source§impl SearchUserProfilesInput
impl SearchUserProfilesInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which you want to search user profiles.
sourcepub fn user_type(&self) -> Option<&UserSearchType>
pub fn user_type(&self) -> Option<&UserSearchType>
Specifies the user type for the SearchUserProfiles
action.
sourcepub fn search_text(&self) -> Option<&str>
pub fn search_text(&self) -> Option<&str>
Specifies the text for which to search.
sourcepub fn max_results(&self) -> Option<i32>
pub fn 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) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
source§impl SearchUserProfilesInput
impl SearchUserProfilesInput
sourcepub fn builder() -> SearchUserProfilesInputBuilder
pub fn builder() -> SearchUserProfilesInputBuilder
Creates a new builder-style object to manufacture SearchUserProfilesInput
.
Trait Implementations§
source§impl Clone for SearchUserProfilesInput
impl Clone for SearchUserProfilesInput
source§fn clone(&self) -> SearchUserProfilesInput
fn clone(&self) -> SearchUserProfilesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SearchUserProfilesInput
impl Debug for SearchUserProfilesInput
source§impl PartialEq for SearchUserProfilesInput
impl PartialEq for SearchUserProfilesInput
source§fn eq(&self, other: &SearchUserProfilesInput) -> bool
fn eq(&self, other: &SearchUserProfilesInput) -> bool
self
and other
values to be equal, and is used
by ==
.