Struct rusoto_s3::QueueConfiguration[][src]

pub struct QueueConfiguration {
    pub events: Vec<String>,
    pub filter: Option<NotificationConfigurationFilter>,
    pub id: Option<String>,
    pub queue_arn: String,
}

Container for specifying an configuration when you want Amazon S3 to publish events to an Amazon Simple Queue Service (Amazon SQS) queue.

Fields

Amazon SQS queue ARN to which Amazon S3 will publish a message when it detects events of specified type.

Trait Implementations

impl Default for QueueConfiguration
[src]

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

impl Debug for QueueConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for QueueConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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