Module Values.ReportDestinationSource

Contains information from your report job about your report destination.

Sourcetype nonrec t = {
  1. s3BucketName : string option;
    (*

    The unique name of the Amazon S3 bucket that receives your reports.

    *)
  2. s3Keys : StringList.t option;
    (*

    The object key that uniquely identifies your reports in your S3 bucket.

    *)
}
Sourceval make : ?s3BucketName:??? -> ?s3Keys:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) 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