Struct aws_sdk_ssm::types::NotificationConfig
source · #[non_exhaustive]pub struct NotificationConfig {
pub notification_arn: Option<String>,
pub notification_events: Option<Vec<NotificationEvent>>,
pub notification_type: Option<NotificationType>,
}
Expand description
Configurations for sending notifications.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.notification_arn: Option<String>
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.
notification_events: Option<Vec<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.
notification_type: 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.
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) -> &[NotificationEvent]
pub fn notification_events(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .notification_events.is_none()
.
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() -> NotificationConfigBuilder
pub fn builder() -> NotificationConfigBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NotificationConfig
impl Debug for NotificationConfig
source§impl PartialEq for NotificationConfig
impl PartialEq for NotificationConfig
source§fn eq(&self, other: &NotificationConfig) -> bool
fn eq(&self, other: &NotificationConfig) -> bool
self
and other
values to be equal, and is used
by ==
.