Struct aws_sdk_macie2::model::UsageStatisticsFilter
source · [−]#[non_exhaustive]pub struct UsageStatisticsFilter {
pub comparator: Option<UsageStatisticsFilterComparator>,
pub key: Option<UsageStatisticsFilterKey>,
pub values: Option<Vec<String>>,
}
Expand description
Specifies a condition for filtering the results of a query for quota and usage data for one or more Amazon Macie accounts.
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.comparator: Option<UsageStatisticsFilterComparator>
The operator to use in the condition. If the value for the key property is accountId, this value must be CONTAINS. If the value for the key property is any other supported field, this value can be EQ, GT, GTE, LT, LTE, or NE.
key: Option<UsageStatisticsFilterKey>
The field to use in the condition.
values: Option<Vec<String>>
An array that lists values to use in the condition, based on the value for the field specified by the key property. If the value for the key property is accountId, this array can specify multiple values. Otherwise, this array can specify only one value.
Valid values for each supported field are:
accountId - The unique identifier for an Amazon Web Services account.
freeTrialStartDate - The date and time, in UTC and extended ISO 8601 format, when the free trial started for an account.
serviceLimit - A Boolean (true or false) value that indicates whether an account has reached its monthly quota.
total - A string that represents the current estimated cost for an account.
Implementations
sourceimpl UsageStatisticsFilter
impl UsageStatisticsFilter
sourcepub fn comparator(&self) -> Option<&UsageStatisticsFilterComparator>
pub fn comparator(&self) -> Option<&UsageStatisticsFilterComparator>
The operator to use in the condition. If the value for the key property is accountId, this value must be CONTAINS. If the value for the key property is any other supported field, this value can be EQ, GT, GTE, LT, LTE, or NE.
sourcepub fn key(&self) -> Option<&UsageStatisticsFilterKey>
pub fn key(&self) -> Option<&UsageStatisticsFilterKey>
The field to use in the condition.
sourcepub fn values(&self) -> Option<&[String]>
pub fn values(&self) -> Option<&[String]>
An array that lists values to use in the condition, based on the value for the field specified by the key property. If the value for the key property is accountId, this array can specify multiple values. Otherwise, this array can specify only one value.
Valid values for each supported field are:
accountId - The unique identifier for an Amazon Web Services account.
freeTrialStartDate - The date and time, in UTC and extended ISO 8601 format, when the free trial started for an account.
serviceLimit - A Boolean (true or false) value that indicates whether an account has reached its monthly quota.
total - A string that represents the current estimated cost for an account.
sourceimpl UsageStatisticsFilter
impl UsageStatisticsFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UsageStatisticsFilter
Trait Implementations
sourceimpl Clone for UsageStatisticsFilter
impl Clone for UsageStatisticsFilter
sourcefn clone(&self) -> UsageStatisticsFilter
fn clone(&self) -> UsageStatisticsFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UsageStatisticsFilter
impl Debug for UsageStatisticsFilter
sourceimpl PartialEq<UsageStatisticsFilter> for UsageStatisticsFilter
impl PartialEq<UsageStatisticsFilter> for UsageStatisticsFilter
sourcefn eq(&self, other: &UsageStatisticsFilter) -> bool
fn eq(&self, other: &UsageStatisticsFilter) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UsageStatisticsFilter) -> bool
fn ne(&self, other: &UsageStatisticsFilter) -> bool
This method tests for !=
.
impl StructuralPartialEq for UsageStatisticsFilter
Auto Trait Implementations
impl RefUnwindSafe for UsageStatisticsFilter
impl Send for UsageStatisticsFilter
impl Sync for UsageStatisticsFilter
impl Unpin for UsageStatisticsFilter
impl UnwindSafe for UsageStatisticsFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more