Module Values.CloudFunctionConfigurationSource

Container for specifying the Lambda notification configuration.

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

    Bucket events for which to send notifications.

    *)
  4. cloudFunction : CloudFunction.t option;
    (*

    Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type.

    *)
  5. invocationRole : CloudFunctionInvocationRole.t option;
    (*

    The role supporting the invocation of the Lambda function

    *)
}
Sourceval make : ?id:??? -> ?event:??? -> ?events:??? -> ?cloudFunction:??? -> ?invocationRole:??? -> 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