Struct aws_sdk_s3::model::TopicConfiguration
source · [−]#[non_exhaustive]pub struct TopicConfiguration { /* private fields */ }
Expand description
A container for specifying the configuration for publication of messages to an Amazon Simple Notification Service (Amazon SNS) topic when Amazon S3 detects specified events.
Implementations
sourceimpl TopicConfiguration
impl TopicConfiguration
sourcepub 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.
sourcepub fn topic_arn(&self) -> Option<&str>
pub fn topic_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon SNS topic to which Amazon S3 publishes a message when it detects events of the specified type.
sourcepub fn events(&self) -> Option<&[Event]>
pub fn events(&self) -> Option<&[Event]>
The Amazon S3 bucket event about which to send notifications. For more information, see Supported Event Types in the Amazon S3 User Guide.
sourcepub 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 in the Amazon S3 User Guide.
sourceimpl TopicConfiguration
impl TopicConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TopicConfiguration
.
Trait Implementations
sourceimpl Clone for TopicConfiguration
impl Clone for TopicConfiguration
sourcefn clone(&self) -> TopicConfiguration
fn clone(&self) -> TopicConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TopicConfiguration
impl Debug for TopicConfiguration
sourceimpl PartialEq<TopicConfiguration> for TopicConfiguration
impl PartialEq<TopicConfiguration> for TopicConfiguration
sourcefn eq(&self, other: &TopicConfiguration) -> bool
fn eq(&self, other: &TopicConfiguration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TopicConfiguration) -> bool
fn ne(&self, other: &TopicConfiguration) -> bool
This method tests for !=
.
impl StructuralPartialEq for TopicConfiguration
Auto Trait Implementations
impl RefUnwindSafe for TopicConfiguration
impl Send for TopicConfiguration
impl Sync for TopicConfiguration
impl Unpin for TopicConfiguration
impl UnwindSafe for TopicConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more