Module Values.JobReportSource

Contains the configuration parameters for a job-completion report.

Sourcetype nonrec t = {
  1. bucket : S3BucketArnString.t option;
    (*

    The Amazon Resource Name (ARN) for the bucket where specified job-completion report will be stored. Directory buckets - Directory buckets aren't supported as a location for Batch Operations to store job completion reports.

    *)
  2. format : JobReportFormat.t option;
    (*

    The format of the specified job-completion report.

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

    Indicates whether the specified job will generate a job-completion report.

    *)
  4. prefix : ReportPrefixString.t option;
    (*

    An optional prefix to describe where in the specified bucket the job-completion report will be stored. Amazon S3 stores the job-completion report at <prefix>/job-<job-id>/report.json.

    *)
  5. reportScope : JobReportScope.t option;
    (*

    Indicates whether the job-completion report will include details of all tasks or only failed tasks.

    *)
  6. expectedBucketOwner : AccountId.t option;
    (*

    Lists the Amazon Web Services account ID that owns the target bucket, where the completion report is received.

    *)
}
Sourceval context_ : string
Sourceval make : ?bucket:??? -> ?format:??? -> ?prefix:??? -> ?reportScope:??? -> ?expectedBucketOwner:??? -> enabled:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of S3BucketArnString.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