Struct aws_sdk_iot::operation::search_index::SearchIndexInput
source · #[non_exhaustive]pub struct SearchIndexInput {
pub index_name: Option<String>,
pub query_string: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub query_version: 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.index_name: Option<String>The search index name.
query_string: Option<String>The search query string. For more information about the search query syntax, see Query syntax.
next_token: Option<String>The token used to get the next set of results, or null if there are no additional results.
max_results: Option<i32>The maximum number of results to return per page at one time. This maximum number cannot exceed 100. The response might contain fewer results but will never contain more. You can use nextToken to retrieve the next set of results until nextToken returns NULL.
query_version: Option<String>The query version.
Implementations§
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 per page at one time. This maximum number cannot exceed 100. The response might contain fewer results but will never contain more. You can use nextToken to retrieve the next set of results until nextToken returns NULL.
sourcepub fn query_version(&self) -> Option<&str>
pub fn query_version(&self) -> Option<&str>
The query version.
source§impl SearchIndexInput
impl SearchIndexInput
sourcepub fn builder() -> SearchIndexInputBuilder
pub fn builder() -> SearchIndexInputBuilder
Creates a new builder-style object to manufacture SearchIndexInput.
Trait Implementations§
source§impl Clone for SearchIndexInput
impl Clone for SearchIndexInput
source§fn clone(&self) -> SearchIndexInput
fn clone(&self) -> SearchIndexInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SearchIndexInput
impl Debug for SearchIndexInput
source§impl PartialEq for SearchIndexInput
impl PartialEq for SearchIndexInput
source§fn eq(&self, other: &SearchIndexInput) -> bool
fn eq(&self, other: &SearchIndexInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SearchIndexInput
Auto Trait Implementations§
impl Freeze for SearchIndexInput
impl RefUnwindSafe for SearchIndexInput
impl Send for SearchIndexInput
impl Sync for SearchIndexInput
impl Unpin for SearchIndexInput
impl UnwindSafe for SearchIndexInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more