Struct aws_sdk_ssm::model::NotificationConfig
source · #[non_exhaustive]pub struct NotificationConfig { /* private fields */ }
Expand description
Configurations for sending notifications.
Implementations§
source§impl 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.
source§impl NotificationConfig
impl NotificationConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NotificationConfig
.
Trait Implementations§
source§impl Clone for NotificationConfig
impl Clone for NotificationConfig
source§fn clone(&self) -> NotificationConfig
fn clone(&self) -> NotificationConfig
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 more