Module Values.S3MachineLearningModelResourceDataSource

Attributes that define an Amazon S3 machine learning resource.

Sourcetype nonrec t = {
  1. destinationPath : string option;
    (*

    The absolute local path of the resource inside the Lambda environment.

    *)
  2. ownerSetting : ResourceDownloadOwnerSetting.t option;
  3. s3Uri : string option;
    (*

    The URI of the source model in an S3 bucket. The model package must be in tar.gz or .zip format.

    *)
}
Sourceval make : ?destinationPath:??? -> ?ownerSetting:??? -> ?s3Uri:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Enum of string | `String of string ]) list ]) 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