Module Values.S3LogDestinationSource

The Amazon S3 logging configuration settings for the pipe.

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

    The name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.

    *)
  2. prefix : String_.t option;
    (*

    The prefix text with which to begin Amazon S3 log object names. For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.

    *)
  3. bucketOwner : String_.t option;
    (*

    The Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.

    *)
  4. outputFormat : S3OutputFormat.t option;
    (*

    The format EventBridge uses for the log records. EventBridge currently only supports json formatting.

    *)
}
Sourceval make : ?bucketName:??? -> ?prefix:??? -> ?bucketOwner:??? -> ?outputFormat:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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