pub struct GetStatisticsRequest {
pub aggregation_field: Option<String>,
pub index_name: Option<String>,
pub query_string: String,
pub query_version: Option<String>,
}Fields§
§aggregation_field: Option<String>The aggregation field name.
index_name: Option<String>The name of the index to search. The default value is AWS_Things.
query_string: StringThe query used to search. You can specify "*" for the query string to get the count of all indexed things in your AWS account.
query_version: Option<String>The version of the query used to search.
Trait Implementations§
Source§impl Clone for GetStatisticsRequest
impl Clone for GetStatisticsRequest
Source§fn clone(&self) -> GetStatisticsRequest
fn clone(&self) -> GetStatisticsRequest
Returns a duplicate 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 GetStatisticsRequest
impl Debug for GetStatisticsRequest
Source§impl Default for GetStatisticsRequest
impl Default for GetStatisticsRequest
Source§fn default() -> GetStatisticsRequest
fn default() -> GetStatisticsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetStatisticsRequest
impl PartialEq for GetStatisticsRequest
Source§impl Serialize for GetStatisticsRequest
impl Serialize for GetStatisticsRequest
impl StructuralPartialEq for GetStatisticsRequest
Auto Trait Implementations§
impl Freeze for GetStatisticsRequest
impl RefUnwindSafe for GetStatisticsRequest
impl Send for GetStatisticsRequest
impl Sync for GetStatisticsRequest
impl Unpin for GetStatisticsRequest
impl UnwindSafe for GetStatisticsRequest
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