pub struct NotificationConfiguration {
pub notification_topic_arn: Option<String>,
}
Expand description
Configures SNS notifications of available or expiring work items for work teams.
Fields§
§notification_topic_arn: Option<String>
The ARN for the SNS topic to which notifications should be published.
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 · 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
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 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