Interface CfnProcessingJob.RedshiftDatasetDefinitionProperty

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

@Stability(Stable) public static interface CfnProcessingJob.RedshiftDatasetDefinitionProperty extends software.amazon.jsii.JsiiSerializable
Configuration for Redshift Dataset Definition input.

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.*;
 RedshiftDatasetDefinitionProperty redshiftDatasetDefinitionProperty = 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();
 

See Also: