pub enum NotificationDestination<'a> {
Lambda(&'a FunctionRef, NotificationEventType),
Sns(&'a TopicRef, NotificationEventType),
Sqs(&'a QueueRef, NotificationEventType),
}Variants§
Lambda(&'a FunctionRef, NotificationEventType)
Sns(&'a TopicRef, NotificationEventType)
Sqs(&'a QueueRef, NotificationEventType)
Auto Trait Implementations§
impl<'a> Freeze for NotificationDestination<'a>
impl<'a> RefUnwindSafe for NotificationDestination<'a>
impl<'a> Send for NotificationDestination<'a>
impl<'a> Sync for NotificationDestination<'a>
impl<'a> Unpin for NotificationDestination<'a>
impl<'a> UnsafeUnpin for NotificationDestination<'a>
impl<'a> UnwindSafe for NotificationDestination<'a>
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