Module Values_0.NotificationConfigSource

Configurations for sending notifications.

Sourcetype nonrec t = {
  1. notificationArn : NotificationArn.t option;
    (*

    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.

    *)
  2. notificationEvents : NotificationEventList.t option;
    (*

    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.

    *)
  3. notificationType : NotificationType.t option;
    (*

    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.

    *)
}
Sourceval make : ?notificationArn:??? -> ?notificationEvents:??? -> ?notificationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of NotificationArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t