Module Values_1.ProcessingOutputSource

Describes the results of a processing job. The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.

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

    The name for the processing job output.

    *)
  2. s3Output : ProcessingS3Output.t option;
    (*

    Configuration for processing job outputs in Amazon S3.

    *)
  3. featureStoreOutput : ProcessingFeatureStoreOutput.t option;
    (*

    Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when AppManaged is specified.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?s3Output:??? -> ?featureStoreOutput:??? -> ?appManaged:??? -> outputName: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 ]) 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