Struct aws_sdk_ssm::model::NotificationConfig
source · [−]#[non_exhaustive]pub struct NotificationConfig { /* private fields */ }
Expand description
Configurations for sending notifications.
Implementations
sourceimpl NotificationConfig
impl NotificationConfig
sourcepub fn notification_arn(&self) -> Option<&str>
pub fn notification_arn(&self) -> Option<&str>
An Amazon Resource Name (ARN) for an Amazon Simple Notification Service (Amazon SNS) topic. Run Command pushes notifications about command status changes to this topic.
sourcepub fn notification_events(&self) -> Option<&[NotificationEvent]>
pub fn notification_events(&self) -> Option<&[NotificationEvent]>
The different events for which you can receive notifications. To learn more about these events, see Monitoring Systems Manager status changes using Amazon SNS notifications in the Amazon Web Services Systems Manager User Guide.
sourcepub fn notification_type(&self) -> Option<&NotificationType>
pub fn notification_type(&self) -> Option<&NotificationType>
The type of notification.
-
Command
: Receive notification when the status of a command changes. -
Invocation
: For commands sent to multiple managed nodes, receive notification on a per-node basis when the status of a command changes.
sourceimpl NotificationConfig
impl NotificationConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NotificationConfig
.
Trait Implementations
sourceimpl Clone for NotificationConfig
impl Clone for NotificationConfig
sourcefn clone(&self) -> NotificationConfig
fn clone(&self) -> NotificationConfig
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 moresourceimpl Debug for NotificationConfig
impl Debug for NotificationConfig
sourceimpl PartialEq<NotificationConfig> for NotificationConfig
impl PartialEq<NotificationConfig> for NotificationConfig
sourcefn eq(&self, other: &NotificationConfig) -> bool
fn eq(&self, other: &NotificationConfig) -> bool
impl StructuralPartialEq for NotificationConfig
Auto Trait Implementations
impl RefUnwindSafe for NotificationConfig
impl Send for NotificationConfig
impl Sync for NotificationConfig
impl Unpin for NotificationConfig
impl UnwindSafe for NotificationConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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