Struct aws_sdk_iot::input::SearchIndexInput
source · #[non_exhaustive]pub struct SearchIndexInput { /* private fields */ }
Implementations§
source§impl SearchIndexInput
impl SearchIndexInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchIndex, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchIndex, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SearchIndex
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchIndexInput
.
source§impl SearchIndexInput
impl SearchIndexInput
sourcepub fn index_name(&self) -> Option<&str>
pub fn index_name(&self) -> Option<&str>
The search index name.
sourcepub fn query_string(&self) -> Option<&str>
pub fn query_string(&self) -> Option<&str>
The search query string. For more information about the search query syntax, see Query syntax.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token used to get the next set of results, or null
if there are no additional results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return at one time.
sourcepub fn query_version(&self) -> Option<&str>
pub fn query_version(&self) -> Option<&str>
The query version.
Trait Implementations§
source§impl Clone for SearchIndexInput
impl Clone for SearchIndexInput
source§fn clone(&self) -> SearchIndexInput
fn clone(&self) -> SearchIndexInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SearchIndexInput
impl Debug for SearchIndexInput
source§impl PartialEq<SearchIndexInput> for SearchIndexInput
impl PartialEq<SearchIndexInput> for SearchIndexInput
source§fn eq(&self, other: &SearchIndexInput) -> bool
fn eq(&self, other: &SearchIndexInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.