[][src]Struct rusoto_logs::PutSubscriptionFilterRequest

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

Fields

destination_arn: String

The ARN of the destination to deliver matching log events to. Currently, the supported destinations are:

  • An Amazon Kinesis stream belonging to the same account as the subscription filter, for same-account delivery.

  • A logical destination (specified using an ARN) belonging to a different account, for cross-account delivery.

  • An Amazon Kinesis Firehose delivery stream belonging to the same account as the subscription filter, for same-account delivery.

  • An AWS Lambda function belonging to the same account as the subscription filter, for same-account delivery.

distribution: Option<String>

The method used to distribute log data to the destination. By default log data is grouped by log stream, but the grouping can be set to random for a more even distribution. This property is only applicable when the destination is an Amazon Kinesis stream.

filter_name: String

A name for the subscription filter. If you are updating an existing filter, you must specify the correct name in filterName. Otherwise, the call fails because you cannot associate a second filter with a log group. To find the name of the filter currently associated with a log group, use DescribeSubscriptionFilters.

filter_pattern: String

A filter pattern for subscribing to a filtered stream of log events.

log_group_name: String

The name of the log group.

role_arn: Option<String>

The ARN of an IAM role that grants CloudWatch Logs permissions to deliver ingested log events to the destination stream. You don't need to provide the ARN when you are working with a logical destination for cross-account delivery.

Trait Implementations

impl Clone for PutSubscriptionFilterRequest[src]

impl Debug for PutSubscriptionFilterRequest[src]

impl Default for PutSubscriptionFilterRequest[src]

impl PartialEq<PutSubscriptionFilterRequest> for PutSubscriptionFilterRequest[src]

impl Serialize for PutSubscriptionFilterRequest[src]

impl StructuralPartialEq for PutSubscriptionFilterRequest[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument 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> 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.