Struct rusoto_logs::PutMetricFilterRequest[][src]

pub struct PutMetricFilterRequest {
    pub filter_name: String,
    pub filter_pattern: String,
    pub log_group_name: String,
    pub metric_transformations: Vec<MetricTransformation>,
}

Fields

A name for the metric filter.

A filter pattern for extracting metric data out of ingested log events.

The name of the log group.

A collection of information that defines how metric data gets emitted.

Trait Implementations

impl Default for PutMetricFilterRequest
[src]

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

impl Debug for PutMetricFilterRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for PutMetricFilterRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutMetricFilterRequest
[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