Module Values_0.AdditionalS3DataSourceSource

A data source used for training or inference that is in addition to the input dataset or model data.

Sourcetype nonrec t = {
  1. s3DataType : AdditionalS3DataSourceDataType.t;
    (*

    The data type of the additional data source that you specify for use in inference or training.

    *)
  2. s3Uri : S3Uri.t;
    (*

    The uniform resource identifier (URI) used to identify an additional data source used in inference or training.

    *)
  3. compressionType : CompressionType.t option;
    (*

    The type of compression used for an additional data source used in inference or training. Specify None if your additional data source is not compressed.

    *)
  4. eTag : String_.t option;
    (*

    The ETag associated with S3 URI.

    *)
}
Sourceval context_ : string
Sourceval make : ?compressionType:??? -> ?eTag:??? -> s3DataType:AdditionalS3DataSourceDataType.t -> s3Uri:S3Uri.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of 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