#[non_exhaustive]pub struct SendNotificationActionDefinition { /* private fields */ }Expand description
Information about the send notification action.
Implementations§
source§impl SendNotificationActionDefinition
impl SendNotificationActionDefinition
sourcepub fn delivery_method(&self) -> Option<&NotificationDeliveryType>
pub fn delivery_method(&self) -> Option<&NotificationDeliveryType>
Notification delivery method.
sourcepub fn subject(&self) -> Option<&str>
pub fn subject(&self) -> Option<&str>
The subject of the email if the delivery method is EMAIL. Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide.
sourcepub fn content(&self) -> Option<&str>
pub fn content(&self) -> Option<&str>
Notification content. Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide.
sourcepub fn content_type(&self) -> Option<&NotificationContentType>
pub fn content_type(&self) -> Option<&NotificationContentType>
Content type format.
sourcepub fn recipient(&self) -> Option<&NotificationRecipientType>
pub fn recipient(&self) -> Option<&NotificationRecipientType>
Notification recipient.
source§impl SendNotificationActionDefinition
impl SendNotificationActionDefinition
sourcepub fn builder() -> SendNotificationActionDefinitionBuilder
pub fn builder() -> SendNotificationActionDefinitionBuilder
Creates a new builder-style object to manufacture SendNotificationActionDefinition.
Trait Implementations§
source§impl Clone for SendNotificationActionDefinition
impl Clone for SendNotificationActionDefinition
source§fn clone(&self) -> SendNotificationActionDefinition
fn clone(&self) -> SendNotificationActionDefinition
Returns a copy 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 PartialEq<SendNotificationActionDefinition> for SendNotificationActionDefinition
impl PartialEq<SendNotificationActionDefinition> for SendNotificationActionDefinition
source§fn eq(&self, other: &SendNotificationActionDefinition) -> bool
fn eq(&self, other: &SendNotificationActionDefinition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SendNotificationActionDefinition
Auto Trait Implementations§
impl RefUnwindSafe for SendNotificationActionDefinition
impl Send for SendNotificationActionDefinition
impl Sync for SendNotificationActionDefinition
impl Unpin for SendNotificationActionDefinition
impl UnwindSafe for SendNotificationActionDefinition
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