Interface CfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty

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

@Stability(Stable) public static interface CfnProcessingJobPropsMixin.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.mixins.preview.services.sagemaker.mixins.*;
 ProcessingOutputsObjectProperty processingOutputsObjectProperty = ProcessingOutputsObjectProperty.builder()
         .appManaged(false)
         .featureStoreOutput(FeatureStoreOutputProperty.builder()
                 .featureGroupName("featureGroupName")
                 .build())
         .outputName("outputName")
         .s3Output(S3OutputProperty.builder()
                 .localPath("localPath")
                 .s3UploadMode("s3UploadMode")
                 .s3Uri("s3Uri")
                 .build())
         .build();
 

See Also: