[][src]Struct rusoto_cloudwatch::InsightRuleContributor

pub struct InsightRuleContributor {
    pub approximate_aggregate_value: f64,
    pub datapoints: Vec<InsightRuleContributorDatapoint>,
    pub keys: Vec<String>,
}

One of the unique contributors found by a Contributor Insights rule. If the rule contains multiple keys, then a unique contributor is a unique combination of values from all the keys in the rule.

If the rule contains a single key, then each unique contributor is each unique value for this key.

For more information, see GetInsightRuleReport.

Fields

approximate_aggregate_value: f64

An approximation of the aggregate value that comes from this contributor.

datapoints: Vec<InsightRuleContributorDatapoint>

An array of the data points where this contributor is present. Only the data points when this contributor appeared are included in the array.

keys: Vec<String>

One of the log entry field keywords that is used to define contributors for this rule.

Trait Implementations

impl Clone for InsightRuleContributor[src]

impl Debug for InsightRuleContributor[src]

impl Default for InsightRuleContributor[src]

impl PartialEq<InsightRuleContributor> for InsightRuleContributor[src]

impl StructuralPartialEq for InsightRuleContributor[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> From<T> for T[src]

impl<T> Instrument 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.