pub struct QueueConfiguration {
pub events: Vec<String>,
pub filter: Option<NotificationConfigurationFilter>,
pub id: Option<String>,
pub queue_arn: String,
}Expand description
Specifies the configuration for publishing messages to an Amazon Simple Queue Service (Amazon SQS) queue when Amazon S3 detects specified events.
Fields§
§events: Vec<String>A collection of bucket events for which to send notifications
filter: Option<NotificationConfigurationFilter>§id: Option<String>§queue_arn: StringThe Amazon Resource Name (ARN) of the Amazon SQS queue to which Amazon S3 publishes a message when it detects events of the specified type.
Trait Implementations§
Source§impl Clone for QueueConfiguration
impl Clone for QueueConfiguration
Source§fn clone(&self) -> QueueConfiguration
fn clone(&self) -> QueueConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueueConfiguration
impl Debug for QueueConfiguration
Source§impl Default for QueueConfiguration
impl Default for QueueConfiguration
Source§fn default() -> QueueConfiguration
fn default() -> QueueConfiguration
Returns the “default value” for a type. Read more
Source§impl PartialEq for QueueConfiguration
impl PartialEq for QueueConfiguration
impl StructuralPartialEq for QueueConfiguration
Auto Trait Implementations§
impl Freeze for QueueConfiguration
impl RefUnwindSafe for QueueConfiguration
impl Send for QueueConfiguration
impl Sync for QueueConfiguration
impl Unpin for QueueConfiguration
impl UnwindSafe for QueueConfiguration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more