pub struct NotificationConfiguration {
pub event_bridge_configuration: Option<EventBridgeConfiguration>,
pub lambda_function_configurations: Option<LambdaFunctionConfigurationList>,
pub queue_configurations: Option<QueueConfigurationList>,
pub topic_configurations: Option<TopicConfigurationList>,
}Expand description
A container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off for the bucket.
Fields§
§event_bridge_configuration: Option<EventBridgeConfiguration>Enables delivery of events to Amazon EventBridge.
lambda_function_configurations: Option<LambdaFunctionConfigurationList>Describes the Lambda functions to invoke and the events for which to invoke them.
queue_configurations: Option<QueueConfigurationList>The Amazon Simple Queue Service queues to publish messages to and the events for which to publish messages.
topic_configurations: Option<TopicConfigurationList>The topic to which notifications are sent and the events for which notifications are generated.
Trait Implementations§
Source§impl Clone for NotificationConfiguration
impl Clone for NotificationConfiguration
Source§fn clone(&self) -> NotificationConfiguration
fn clone(&self) -> NotificationConfiguration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NotificationConfiguration
impl Debug for NotificationConfiguration
Source§impl Default for NotificationConfiguration
impl Default for NotificationConfiguration
Source§fn default() -> NotificationConfiguration
fn default() -> NotificationConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotificationConfiguration
impl<'de> Deserialize<'de> for NotificationConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'xml> Deserialize<'xml> for NotificationConfiguration
Available on crate feature minio only.
impl<'xml> Deserialize<'xml> for NotificationConfiguration
Available on crate feature
minio only.Source§fn deserialize(d: &mut Deserializer<'xml>) -> DeResult<Self>
fn deserialize(d: &mut Deserializer<'xml>) -> DeResult<Self>
Deserializes the data type Read more
Source§impl<'xml> DeserializeContent<'xml> for NotificationConfiguration
Available on crate feature minio only.
impl<'xml> DeserializeContent<'xml> for NotificationConfiguration
Available on crate feature
minio only.Source§fn deserialize_content(d: &mut Deserializer<'xml>) -> DeResult<Self>
fn deserialize_content(d: &mut Deserializer<'xml>) -> DeResult<Self>
Deserializes the content of the data type Read more
Source§impl DtoExt for NotificationConfiguration
impl DtoExt for NotificationConfiguration
Source§fn ignore_empty_strings(&mut self)
fn ignore_empty_strings(&mut self)
Modifies all empty string fields from
Some("") to NoneSource§impl PartialEq for NotificationConfiguration
impl PartialEq for NotificationConfiguration
Source§fn eq(&self, other: &NotificationConfiguration) -> bool
fn eq(&self, other: &NotificationConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NotificationConfiguration
Available on crate feature minio only.
impl Serialize for NotificationConfiguration
Available on crate feature
minio only.Source§impl SerializeContent for NotificationConfiguration
Available on crate feature minio only.
impl SerializeContent for NotificationConfiguration
Available on crate feature
minio only.Source§fn serialize_content<W: Write>(&self, s: &mut Serializer<W>) -> SerResult
fn serialize_content<W: Write>(&self, s: &mut Serializer<W>) -> SerResult
Serializes the content of the data type Read more
impl StructuralPartialEq for NotificationConfiguration
Auto Trait Implementations§
impl Freeze for NotificationConfiguration
impl RefUnwindSafe for NotificationConfiguration
impl Send for NotificationConfiguration
impl Sync for NotificationConfiguration
impl Unpin for NotificationConfiguration
impl UnsafeUnpin for NotificationConfiguration
impl UnwindSafe for NotificationConfiguration
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