Module Values.AwsS3BucketNotificationConfigurationDetailSource

Details for an S3 bucket notification configuration.

Sourcetype nonrec t = {
  1. events : AwsS3BucketNotificationConfigurationEvents.t option;
    (*

    The list of events that trigger a notification.

    *)
  2. filter : AwsS3BucketNotificationConfigurationFilter.t option;
    (*

    The filters that determine which S3 buckets generate notifications.

    *)
  3. destination : NonEmptyString.t option;
    (*

    The ARN of the Lambda function, Amazon SQS queue, or Amazon SNS topic that generates the notification.

    *)
  4. type_ : NonEmptyString.t option;
    (*

    Indicates the type of notification. Notifications can be generated using Lambda functions, Amazon SQS queues, or Amazon SNS topics, with corresponding valid values as follows: LambdaConfiguration QueueConfiguration TopicConfiguration

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