Module Values.NotificationConfigurationSource

A container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off for the bucket.

Sourcetype nonrec t = {
  1. topicConfigurations : TopicConfigurationList.t option;
    (*

    The topic to which notifications are sent and the events for which notifications are generated.

    *)
  2. queueConfigurations : QueueConfigurationList.t option;
    (*

    The Amazon Simple Queue Service queues to publish messages to and the events for which to publish messages.

    *)
  3. lambdaFunctionConfigurations : LambdaFunctionConfigurationList.t option;
    (*

    Describes the Lambda functions to invoke and the events for which to invoke them.

    *)
  4. eventBridgeConfiguration : EventBridgeConfiguration.t option;
    (*

    Enables delivery of events to Amazon EventBridge.

    *)
}
Sourcetype nonrec error = [
  1. | `Unknown_operation_error of string * string option
]
Sourceval make : ?topicConfigurations:??? -> ?queueConfigurations:??? -> ?lambdaFunctionConfigurations:??? -> ?eventBridgeConfiguration:??? -> unit -> t
Sourceval error_of_json : 'a -> Yojson.Safe.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_of_xml : 'a -> Awso.Xml.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of NotificationId.t | `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of FilterRuleValue.t ]) list ] list ]) list ]) list ]) list ] list | `Structure of 'a list ]) 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