Module Values.OutputDataConfigSource

The output properties for a detection job.

Sourcetype nonrec t = {
  1. s3Bucket : S3Bucket.t;
    (*

    When you use the OutputDataConfig object with asynchronous operations, you specify the Amazon S3 location where you want to write the output data. The URI must be in the same region as the API endpoint that you are calling. The location is used as the prefix for the actual location of the output.

    *)
  2. s3Key : S3Key.t option;
    (*

    The path to the output data files in the S3 bucket. Amazon Comprehend Medical creates an output directory using the job ID so that the output from one job does not overwrite the output of another.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3Key:??? -> s3Bucket:S3Bucket.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Bucket.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