Module Values.OutputConfigSource

The S3 bucket and folder location where training output is placed.

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

    The S3 bucket where training output is placed.

    *)
  2. s3KeyPrefix : S3KeyPrefix.t option;
    (*

    The prefix applied to the training output files.

    *)
}
Sourceval make : ?s3Bucket:??? -> ?s3KeyPrefix:??? -> 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