Module Values_1.ProcessingInputSource

The inputs for a processing job. The processing input must specify exactly one of either S3Input or DatasetDefinition types.

Sourcetype nonrec t = {
  1. inputName : Values_0.String_.t;
    (*

    The name for the processing job input.

    *)
  2. appManaged : Values_0.AppManaged.t option;
    (*

    When True, input operations such as data download are managed natively by the processing job application. When False (default), input operations are managed by Amazon SageMaker.

    *)
  3. s3Input : ProcessingS3Input.t option;
    (*

    Configuration for downloading input data from Amazon S3 into the processing container.

    *)
  4. datasetDefinition : DatasetDefinition.t option;
    (*

    Configuration for a Dataset Definition input.

    *)
}
Sourceval context_ : string
Sourceval make : ?appManaged:??? -> ?s3Input:??? -> ?datasetDefinition:??? -> inputName:Values_0.String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.AppManaged.t | `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `String of Values_0.S3Uri.t | `Structure of (string * [> `Enum of string | `String of string ]) list ]) 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