Struct rusoto_cloudwatch::Datapoint [] [src]

pub struct Datapoint {
    pub average: Option<f64>,
    pub extended_statistics: Option<HashMap<String, f64>>,
    pub maximum: Option<f64>,
    pub minimum: Option<f64>,
    pub sample_count: Option<f64>,
    pub sum: Option<f64>,
    pub timestamp: Option<String>,
    pub unit: Option<String>,
}

Encapsulates the statistical data that CloudWatch computes from metric data.

Fields

The average of the metric values that correspond to the data point.

The percentile statistic for the data point.

The maximum metric value for the data point.

The minimum metric value for the data point.

The number of metric values that contributed to the aggregate value of this data point.

The sum of the metric values for the data point.

The time stamp used for the data point.

The standard unit for the data point.

Trait Implementations

impl Default for Datapoint
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Datapoint
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Datapoint
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Datapoint

impl Sync for Datapoint