Module Values_1.ProcessingS3OutputSource

Configuration for uploading output data to Amazon S3 from the processing container.

Sourcetype nonrec t = {
  1. s3Uri : Values_0.S3Uri.t;
    (*

    A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.

    *)
  2. localPath : Values_0.ProcessingLocalPath.t option;
    (*

    The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3. LocalPath is an absolute path to a directory containing output files. This directory will be created by the platform and exist when your container's entrypoint is invoked.

    *)
  3. s3UploadMode : Values_0.ProcessingS3UploadMode.t;
    (*

    Whether to upload the results of the processing job continuously or after the job completes.

    *)
}
Sourceval context_ : string
Sourceval make : ?localPath:??? -> s3Uri:Values_0.S3Uri.t -> s3UploadMode:Values_0.ProcessingS3UploadMode.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.S3Uri.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