Struct rusoto_s3::NotificationConfiguration[][src]

pub struct NotificationConfiguration {
    pub lambda_function_configurations: Option<Vec<LambdaFunctionConfiguration>>,
    pub queue_configurations: Option<Vec<QueueConfiguration>>,
    pub topic_configurations: Option<Vec<TopicConfiguration>>,
}

Container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off on the bucket.

Fields

Trait Implementations

impl Default for NotificationConfiguration
[src]

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

impl Debug for NotificationConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for NotificationConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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