Struct rusoto_logs::MetricFilter[][src]

pub struct MetricFilter {
    pub creation_time: Option<i64>,
    pub filter_name: Option<String>,
    pub filter_pattern: Option<String>,
    pub log_group_name: Option<String>,
    pub metric_transformations: Option<Vec<MetricTransformation>>,
}

Metric filters express how CloudWatch Logs would extract metric observations from ingested log events and transform them into metric data in a CloudWatch metric.

Fields

The creation time of the metric filter, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

The name of the metric filter.

The name of the log group.

The metric transformations.

Trait Implementations

impl Default for MetricFilter
[src]

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

impl Debug for MetricFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for MetricFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MetricFilter
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations