[][src]Struct rusoto_guardduty::UsageStatistics

pub struct UsageStatistics {
    pub sum_by_account: Option<Vec<UsageAccountResult>>,
    pub sum_by_data_source: Option<Vec<UsageDataSourceResult>>,
    pub sum_by_resource: Option<Vec<UsageResourceResult>>,
    pub top_resources: Option<Vec<UsageResourceResult>>,
}

Contains the result of GuardDuty usage. If a UsageStatisticType is provided the result for other types will be null.

Fields

sum_by_account: Option<Vec<UsageAccountResult>>

The usage statistic sum organized by account ID.

sum_by_data_source: Option<Vec<UsageDataSourceResult>>

The usage statistic sum organized by on data source.

sum_by_resource: Option<Vec<UsageResourceResult>>

The usage statistic sum organized by resource.

top_resources: Option<Vec<UsageResourceResult>>

Lists the top 50 resources that have generated the most GuardDuty usage, in order from most to least expensive.

Trait Implementations

impl Clone for UsageStatistics[src]

impl Debug for UsageStatistics[src]

impl Default for UsageStatistics[src]

impl<'de> Deserialize<'de> for UsageStatistics[src]

impl PartialEq<UsageStatistics> for UsageStatistics[src]

impl StructuralPartialEq for UsageStatistics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.