Struct bonsaidb::keystorage::s3::aws_sdk_s3::types::QueueConfiguration
#[non_exhaustive]pub struct QueueConfiguration {
pub id: Option<String>,
pub queue_arn: Option<String>,
pub events: Option<Vec<Event>>,
pub filter: Option<NotificationConfigurationFilter>,
}
Expand description
Specifies the configuration for publishing messages to an Amazon Simple Queue Service (Amazon SQS) queue when Amazon S3 detects specified events.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
An optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.
queue_arn: Option<String>
The Amazon Resource Name (ARN) of the Amazon SQS queue to which Amazon S3 publishes a message when it detects events of the specified type.
events: Option<Vec<Event>>
A collection of bucket events for which to send notifications
filter: Option<NotificationConfigurationFilter>
Specifies object key name filtering rules. For information about key name filtering, see Configuring event notifications using object key name filtering in the Amazon S3 User Guide.
Implementations§
§impl QueueConfiguration
impl QueueConfiguration
pub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
An optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.
pub fn queue_arn(&self) -> Option<&str>
pub fn queue_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon SQS queue to which Amazon S3 publishes a message when it detects events of the specified type.
pub fn events(&self) -> Option<&[Event]>
pub fn events(&self) -> Option<&[Event]>
A collection of bucket events for which to send notifications
pub fn filter(&self) -> Option<&NotificationConfigurationFilter>
pub fn filter(&self) -> Option<&NotificationConfigurationFilter>
Specifies object key name filtering rules. For information about key name filtering, see Configuring event notifications using object key name filtering in the Amazon S3 User Guide.
§impl QueueConfiguration
impl QueueConfiguration
pub fn builder() -> QueueConfigurationBuilder
pub fn builder() -> QueueConfigurationBuilder
Creates a new builder-style object to manufacture QueueConfiguration
.
Trait Implementations§
§impl Clone for QueueConfiguration
impl Clone for QueueConfiguration
§fn clone(&self) -> QueueConfiguration
fn clone(&self) -> QueueConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for QueueConfiguration
impl Debug for QueueConfiguration
§impl PartialEq for QueueConfiguration
impl PartialEq for QueueConfiguration
§fn eq(&self, other: &QueueConfiguration) -> bool
fn eq(&self, other: &QueueConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.