Values.JobReportSourceContains the configuration parameters for a job-completion report.
type nonrec t = {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.
*)format : JobReportFormat.t option;The format of the specified job-completion report.
*)enabled : Boolean.t;Indicates whether the specified job will generate a job-completion report.
*)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.
*)reportScope : JobReportScope.t option;Indicates whether the job-completion report will include details of all tasks or only failed tasks.
*)expectedBucketOwner : AccountId.t option;Lists the Amazon Web Services account ID that owns the target bucket, where the completion report is received.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of S3BucketArnString.t ])
list ]