Values_1.ProcessingOutputSourceDescribes the results of a processing job. The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.
type nonrec t = {outputName : Values_0.String_.t;The name for the processing job output.
*)s3Output : ProcessingS3Output.t option;Configuration for processing job outputs in Amazon S3.
*)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.
*)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.
*)}val make :
?s3Output:??? ->
?featureStoreOutput:??? ->
?appManaged:??? ->
outputName:Values_0.String_.t ->
unit ->
tval 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 ]