Struct rusoto_logs::SubscriptionFilter[][src]

pub struct SubscriptionFilter {
    pub creation_time: Option<i64>,
    pub destination_arn: Option<String>,
    pub distribution: Option<String>,
    pub filter_name: Option<String>,
    pub filter_pattern: Option<String>,
    pub log_group_name: Option<String>,
    pub role_arn: Option<String>,
}

Represents a subscription filter.

Fields

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

The Amazon Resource Name (ARN) of the destination.

The name of the subscription filter.

The name of the log group.

Trait Implementations

impl Default for SubscriptionFilter
[src]

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

impl Debug for SubscriptionFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for SubscriptionFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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