[][src]Struct rusoto_cloudwatch::GetInsightRuleReportOutput

pub struct GetInsightRuleReportOutput {
    pub aggregate_value: Option<f64>,
    pub aggregation_statistic: Option<String>,
    pub approximate_unique_count: Option<i64>,
    pub contributors: Option<Vec<InsightRuleContributor>>,
    pub key_labels: Option<Vec<String>>,
    pub metric_datapoints: Option<Vec<InsightRuleMetricDatapoint>>,
}

Fields

aggregate_value: Option<f64>

The sum of the values from all individual contributors that match the rule.

aggregation_statistic: Option<String>

Specifies whether this rule aggregates contributor data by COUNT or SUM.

approximate_unique_count: Option<i64>

An approximate count of the unique contributors found by this rule in this time period.

contributors: Option<Vec<InsightRuleContributor>>

An array of the unique contributors found by this rule in this time period. If the rule contains multiple keys, each combination of values for the keys counts as a unique contributor.

key_labels: Option<Vec<String>>

An array of the strings used as the keys for this rule. The keys are the dimensions used to classify contributors. If the rule contains more than one key, then each unique combination of values for the keys is counted as a unique contributor.

metric_datapoints: Option<Vec<InsightRuleMetricDatapoint>>

A time series of metric data points that matches the time period in the rule request.

Trait Implementations

impl Clone for GetInsightRuleReportOutput[src]

impl Debug for GetInsightRuleReportOutput[src]

impl Default for GetInsightRuleReportOutput[src]

impl PartialEq<GetInsightRuleReportOutput> for GetInsightRuleReportOutput[src]

impl StructuralPartialEq for GetInsightRuleReportOutput[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.