#[non_exhaustive]pub struct GetUsageStatisticsInput {
pub filter_by: Option<Vec<UsageStatisticsFilter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub sort_by: Option<UsageStatisticsSortBy>,
pub time_range: Option<TimeRange>,
}
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.filter_by: Option<Vec<UsageStatisticsFilter>>
An array of objects, one for each condition to use to filter the query results. If you specify more than one condition, Amazon Macie uses an AND operator to join the conditions.
max_results: Option<i32>
The maximum number of items to include in each page of the response.
next_token: Option<String>
The nextToken string that specifies which page of results to return in a paginated response.
sort_by: Option<UsageStatisticsSortBy>
The criteria to use to sort the query results.
time_range: Option<TimeRange>
The inclusive time period to query usage data for. Valid values are: MONTH_TO_DATE, for the current calendar month to date; and, PAST_30_DAYS, for the preceding 30 days. If you don't specify a value, Amazon Macie provides usage data for the preceding 30 days.
Implementations§
source§impl GetUsageStatisticsInput
impl GetUsageStatisticsInput
sourcepub fn filter_by(&self) -> Option<&[UsageStatisticsFilter]>
pub fn filter_by(&self) -> Option<&[UsageStatisticsFilter]>
An array of objects, one for each condition to use to filter the query results. If you specify more than one condition, Amazon Macie uses an AND operator to join the conditions.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to include in each page of the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken string that specifies which page of results to return in a paginated response.
sourcepub fn sort_by(&self) -> Option<&UsageStatisticsSortBy>
pub fn sort_by(&self) -> Option<&UsageStatisticsSortBy>
The criteria to use to sort the query results.
sourcepub fn time_range(&self) -> Option<&TimeRange>
pub fn time_range(&self) -> Option<&TimeRange>
The inclusive time period to query usage data for. Valid values are: MONTH_TO_DATE, for the current calendar month to date; and, PAST_30_DAYS, for the preceding 30 days. If you don't specify a value, Amazon Macie provides usage data for the preceding 30 days.
source§impl GetUsageStatisticsInput
impl GetUsageStatisticsInput
sourcepub fn builder() -> GetUsageStatisticsInputBuilder
pub fn builder() -> GetUsageStatisticsInputBuilder
Creates a new builder-style object to manufacture GetUsageStatisticsInput
.
Trait Implementations§
source§impl Clone for GetUsageStatisticsInput
impl Clone for GetUsageStatisticsInput
source§fn clone(&self) -> GetUsageStatisticsInput
fn clone(&self) -> GetUsageStatisticsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetUsageStatisticsInput
impl Debug for GetUsageStatisticsInput
source§impl PartialEq<GetUsageStatisticsInput> for GetUsageStatisticsInput
impl PartialEq<GetUsageStatisticsInput> for GetUsageStatisticsInput
source§fn eq(&self, other: &GetUsageStatisticsInput) -> bool
fn eq(&self, other: &GetUsageStatisticsInput) -> bool
self
and other
values to be equal, and is used
by ==
.