Interface CfnProcessingJob.ProcessingInputsObjectProperty

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

@Stability(Stable) public static interface CfnProcessingJob.ProcessingInputsObjectProperty extends software.amazon.jsii.JsiiSerializable
The inputs for a processing job.

The processing input must specify exactly one of either S3Input or DatasetDefinition 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.*;
 ProcessingInputsObjectProperty processingInputsObjectProperty = ProcessingInputsObjectProperty.builder()
         .inputName("inputName")
         // the properties below are optional
         .appManaged(false)
         .datasetDefinition(DatasetDefinitionProperty.builder()
                 .athenaDatasetDefinition(AthenaDatasetDefinitionProperty.builder()
                         .catalog("catalog")
                         .database("database")
                         .outputFormat("outputFormat")
                         .outputS3Uri("outputS3Uri")
                         .queryString("queryString")
                         // the properties below are optional
                         .kmsKeyId("kmsKeyId")
                         .outputCompression("outputCompression")
                         .workGroup("workGroup")
                         .build())
                 .dataDistributionType("dataDistributionType")
                 .inputMode("inputMode")
                 .localPath("localPath")
                 .redshiftDatasetDefinition(RedshiftDatasetDefinitionProperty.builder()
                         .clusterId("clusterId")
                         .clusterRoleArn("clusterRoleArn")
                         .database("database")
                         .dbUser("dbUser")
                         .outputFormat("outputFormat")
                         .outputS3Uri("outputS3Uri")
                         .queryString("queryString")
                         // the properties below are optional
                         .kmsKeyId("kmsKeyId")
                         .outputCompression("outputCompression")
                         .build())
                 .build())
         .s3Input(S3InputProperty.builder()
                 .s3DataType("s3DataType")
                 .s3Uri("s3Uri")
                 // the properties below are optional
                 .localPath("localPath")
                 .s3CompressionType("s3CompressionType")
                 .s3DataDistributionType("s3DataDistributionType")
                 .s3InputMode("s3InputMode")
                 .build())
         .build();
 

See Also: