Interface CfnProcessingJob.ProcessingOutputConfigProperty

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

@Stability(Stable) public static interface CfnProcessingJob.ProcessingOutputConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration for uploading output from the processing container.

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.*;
 ProcessingOutputConfigProperty processingOutputConfigProperty = ProcessingOutputConfigProperty.builder()
         .outputs(List.of(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()))
         // the properties below are optional
         .kmsKeyId("kmsKeyId")
         .build();
 

See Also: