Interface CfnProcessingJob.ProcessingOutputsObjectProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProcessingJob.ProcessingOutputsObjectProperty.Jsii$Proxy
Enclosing class:
CfnProcessingJob

@Stability(Stable) public static interface CfnProcessingJob.ProcessingOutputsObjectProperty extends software.amazon.jsii.JsiiSerializable
Describes the results of a processing job.

The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 ProcessingOutputsObjectProperty processingOutputsObjectProperty = ProcessingOutputsObjectProperty.builder()
         .outputName("outputName")
         // the properties below are optional
         .appManaged(false)
         .featureStoreOutput(FeatureStoreOutputProperty.builder()
                 .featureGroupName("featureGroupName")
                 .build())
         .s3Output(S3OutputProperty.builder()
                 .s3UploadMode("s3UploadMode")
                 .s3Uri("s3Uri")
                 // the properties below are optional
                 .localPath("localPath")
                 .build())
         .build();
 

See Also: