Module Values.ReportDeliveryChannelSource

Contains information from your report plan about where to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.

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

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

    *)
  2. s3KeyPrefix : string option;
    (*

    The prefix for where Backup Audit Manager delivers your reports to Amazon S3. The prefix is this part of the following path: s3://your-bucket-name/prefix/Backup/us-west-2/year/month/day/report-name. If not specified, there is no prefix.

    *)
  3. formats : FormatList.t option;
    (*

    The format of your reports: CSV, JSON, or both. If not specified, the default format is CSV.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3KeyPrefix:??? -> ?formats:??? -> s3BucketName:string -> 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