Module Values.VaultNotificationConfigSource

Represents a vault's notification configuration.

Sourcetype nonrec t = {
  1. sNSTopic : String_.t option;
    (*

    The Amazon Simple Notification Service (Amazon SNS) topic Amazon Resource Name (ARN).

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

    A list of one or more events for which Amazon Glacier will send a notification to the specified Amazon SNS topic.

    *)
}
Sourceval make : ?sNSTopic:??? -> ?events:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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