#[non_exhaustive]pub struct SearchGroupProfilesInput {
pub domain_identifier: Option<String>,
pub group_type: Option<GroupSearchType>,
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 group profiles.
group_type: Option<GroupSearchType>
The group type for which to search.
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 SearchGroupProfiles
. 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 SearchGroupProfiles
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 SearchGroupProfiles
to list the next set of results.
Implementations§
source§impl SearchGroupProfilesInput
impl SearchGroupProfilesInput
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 group profiles.
sourcepub fn group_type(&self) -> Option<&GroupSearchType>
pub fn group_type(&self) -> Option<&GroupSearchType>
The group type for which to search.
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 SearchGroupProfiles
. 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 SearchGroupProfiles
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 SearchGroupProfiles
to list the next set of results.
source§impl SearchGroupProfilesInput
impl SearchGroupProfilesInput
sourcepub fn builder() -> SearchGroupProfilesInputBuilder
pub fn builder() -> SearchGroupProfilesInputBuilder
Creates a new builder-style object to manufacture SearchGroupProfilesInput
.
Trait Implementations§
source§impl Clone for SearchGroupProfilesInput
impl Clone for SearchGroupProfilesInput
source§fn clone(&self) -> SearchGroupProfilesInput
fn clone(&self) -> SearchGroupProfilesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SearchGroupProfilesInput
impl Debug for SearchGroupProfilesInput
source§impl PartialEq for SearchGroupProfilesInput
impl PartialEq for SearchGroupProfilesInput
source§fn eq(&self, other: &SearchGroupProfilesInput) -> bool
fn eq(&self, other: &SearchGroupProfilesInput) -> bool
self
and other
values to be equal, and is used
by ==
.