Struct aws_sdk_iot::operation::get_statistics::GetStatisticsInput
source · #[non_exhaustive]pub struct GetStatisticsInput {
pub index_name: Option<String>,
pub query_string: Option<String>,
pub aggregation_field: Option<String>,
pub query_version: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.index_name: Option<String>
The name of the index to search. The default value is AWS_Things
.
query_string: Option<String>
The query used to search. You can specify "*" for the query string to get the count of all indexed things in your Amazon Web Services account.
aggregation_field: Option<String>
The aggregation field name.
query_version: Option<String>
The version of the query used to search.
Implementations§
source§impl GetStatisticsInput
impl GetStatisticsInput
sourcepub fn index_name(&self) -> Option<&str>
pub fn index_name(&self) -> Option<&str>
The name of the index to search. The default value is AWS_Things
.
sourcepub fn query_string(&self) -> Option<&str>
pub fn query_string(&self) -> Option<&str>
The query used to search. You can specify "*" for the query string to get the count of all indexed things in your Amazon Web Services account.
sourcepub fn aggregation_field(&self) -> Option<&str>
pub fn aggregation_field(&self) -> Option<&str>
The aggregation field name.
sourcepub fn query_version(&self) -> Option<&str>
pub fn query_version(&self) -> Option<&str>
The version of the query used to search.
source§impl GetStatisticsInput
impl GetStatisticsInput
sourcepub fn builder() -> GetStatisticsInputBuilder
pub fn builder() -> GetStatisticsInputBuilder
Creates a new builder-style object to manufacture GetStatisticsInput
.
Trait Implementations§
source§impl Clone for GetStatisticsInput
impl Clone for GetStatisticsInput
source§fn clone(&self) -> GetStatisticsInput
fn clone(&self) -> GetStatisticsInput
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 GetStatisticsInput
impl Debug for GetStatisticsInput
source§impl PartialEq for GetStatisticsInput
impl PartialEq for GetStatisticsInput
source§fn eq(&self, other: &GetStatisticsInput) -> bool
fn eq(&self, other: &GetStatisticsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetStatisticsInput
Auto Trait Implementations§
impl Freeze for GetStatisticsInput
impl RefUnwindSafe for GetStatisticsInput
impl Send for GetStatisticsInput
impl Sync for GetStatisticsInput
impl Unpin for GetStatisticsInput
impl UnwindSafe for GetStatisticsInput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.