Struct aws_sdk_datazone::operation::search::SearchInput
source · #[non_exhaustive]pub struct SearchInput {
pub domain_identifier: Option<String>,
pub owning_project_identifier: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub search_scope: Option<InventorySearchScope>,
pub search_text: Option<String>,
pub search_in: Option<Vec<SearchInItem>>,
pub filters: Option<FilterClause>,
pub sort: Option<SearchSort>,
pub additional_attributes: Option<Vec<SearchOutputAdditionalAttribute>>,
}
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.
owning_project_identifier: Option<String>
The identifier of the owning project specified for the search.
max_results: Option<i32>
The maximum number of results to return in a single call to Search
. 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 Search
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 Search
to list the next set of results.
search_scope: Option<InventorySearchScope>
The scope of the search.
search_text: Option<String>
Specifies the text for which to search.
search_in: Option<Vec<SearchInItem>>
filters: Option<FilterClause>
Specifies the search filters.
sort: Option<SearchSort>
Specifies the way in which the search results are to be sorted.
additional_attributes: Option<Vec<SearchOutputAdditionalAttribute>>
Specifies additional attributes for the Search
action.
Implementations§
source§impl SearchInput
impl SearchInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain.
sourcepub fn owning_project_identifier(&self) -> Option<&str>
pub fn owning_project_identifier(&self) -> Option<&str>
The identifier of the owning project specified for the 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 Search
. 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 Search
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 Search
to list the next set of results.
sourcepub fn search_scope(&self) -> Option<&InventorySearchScope>
pub fn search_scope(&self) -> Option<&InventorySearchScope>
The scope of the search.
sourcepub fn search_text(&self) -> Option<&str>
pub fn search_text(&self) -> Option<&str>
Specifies the text for which to search.
sourcepub fn search_in(&self) -> Option<&[SearchInItem]>
pub fn search_in(&self) -> Option<&[SearchInItem]>
sourcepub fn filters(&self) -> Option<&FilterClause>
pub fn filters(&self) -> Option<&FilterClause>
Specifies the search filters.
sourcepub fn sort(&self) -> Option<&SearchSort>
pub fn sort(&self) -> Option<&SearchSort>
Specifies the way in which the search results are to be sorted.
sourcepub fn additional_attributes(
&self
) -> Option<&[SearchOutputAdditionalAttribute]>
pub fn additional_attributes( &self ) -> Option<&[SearchOutputAdditionalAttribute]>
Specifies additional attributes for the Search
action.
source§impl SearchInput
impl SearchInput
sourcepub fn builder() -> SearchInputBuilder
pub fn builder() -> SearchInputBuilder
Creates a new builder-style object to manufacture SearchInput
.
Trait Implementations§
source§impl Clone for SearchInput
impl Clone for SearchInput
source§fn clone(&self) -> SearchInput
fn clone(&self) -> SearchInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SearchInput
impl Debug for SearchInput
source§impl PartialEq for SearchInput
impl PartialEq for SearchInput
source§fn eq(&self, other: &SearchInput) -> bool
fn eq(&self, other: &SearchInput) -> bool
self
and other
values to be equal, and is used
by ==
.