[][src]Struct rusoto_cloudwatch::InsightRuleMetricDatapoint

pub struct InsightRuleMetricDatapoint {
    pub average: Option<f64>,
    pub max_contributor_value: Option<f64>,
    pub maximum: Option<f64>,
    pub minimum: Option<f64>,
    pub sample_count: Option<f64>,
    pub sum: Option<f64>,
    pub timestamp: String,
    pub unique_contributors: Option<f64>,
}

One data point from the metric time series returned in a Contributor Insights rule report.

For more information, see GetInsightRuleReport.

Fields

average: Option<f64>

The average value from all contributors during the time period represented by that data point.

This statistic is returned only if you included it in the Metrics array in your request.

max_contributor_value: Option<f64>

The maximum value provided by one contributor during this timestamp. Each timestamp is evaluated separately, so the identity of the max contributor could be different for each timestamp.

This statistic is returned only if you included it in the Metrics array in your request.

maximum: Option<f64>

The maximum value from a single occurence from a single contributor during the time period represented by that data point.

This statistic is returned only if you included it in the Metrics array in your request.

minimum: Option<f64>

The minimum value from a single contributor during the time period represented by that data point.

This statistic is returned only if you included it in the Metrics array in your request.

sample_count: Option<f64>

The number of occurrences that matched the rule during this data point.

This statistic is returned only if you included it in the Metrics array in your request.

sum: Option<f64>

The sum of the values from all contributors during the time period represented by that data point.

This statistic is returned only if you included it in the Metrics array in your request.

timestamp: String

The timestamp of the data point.

unique_contributors: Option<f64>

The number of unique contributors who published data during this timestamp.

This statistic is returned only if you included it in the Metrics array in your request.

Trait Implementations

impl Clone for InsightRuleMetricDatapoint[src]

impl Debug for InsightRuleMetricDatapoint[src]

impl Default for InsightRuleMetricDatapoint[src]

impl PartialEq<InsightRuleMetricDatapoint> for InsightRuleMetricDatapoint[src]

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