[][src]Struct rusoto_logs::SubscriptionFilter

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

creation_time: Option<i64>

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

destination_arn: Option<String>

The Amazon Resource Name (ARN) of the destination.

distribution: Option<String>filter_name: Option<String>

The name of the subscription filter.

filter_pattern: Option<String>log_group_name: Option<String>

The name of the log group.

role_arn: Option<String>

Trait Implementations

impl Clone for SubscriptionFilter[src]

impl Debug for SubscriptionFilter[src]

impl Default for SubscriptionFilter[src]

impl<'de> Deserialize<'de> for SubscriptionFilter[src]

impl PartialEq<SubscriptionFilter> for SubscriptionFilter[src]

impl StructuralPartialEq for SubscriptionFilter[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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> Sealed<T> for T where
    T: ?Sized

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.