Module Values.S3ConfigurationSource

Configuration for S3 bucket log delivery.

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

    The name of the S3 bucket to deliver logs to.

    *)
  2. enabled : Boolean.t;
    (*

    Indicates whether log delivery to the S3 bucket is enabled.

    *)
}
Sourceval context_ : string
Sourceval make : bucketName:S3ConfigurationBucketNameString.t -> enabled:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of S3ConfigurationBucketNameString.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