Module Values.TopicConfigurationDeprecatedSource

A container for specifying the configuration for publication of messages to an Amazon Simple Notification Service (Amazon SNS) topic when Amazon S3 detects specified events. This data type is deprecated. Use TopicConfiguration instead.

Sourcetype nonrec t = {
  1. id : NotificationId.t option;
  2. events : EventList.t option;
    (*

    A collection of events related to objects

    *)
  3. event : Event.t option;
    (*

    Bucket event for which to send notifications.

    *)
  4. topic : TopicArn.t option;
    (*

    Amazon SNS topic to which Amazon S3 will publish a message to report the specified events for the bucket.

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