Interface CfnProcessingJob.AthenaDatasetDefinitionProperty

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

@Stability(Stable) public static interface CfnProcessingJob.AthenaDatasetDefinitionProperty extends software.amazon.jsii.JsiiSerializable
Configuration for Athena 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.*;
 AthenaDatasetDefinitionProperty athenaDatasetDefinitionProperty = AthenaDatasetDefinitionProperty.builder()
         .catalog("catalog")
         .database("database")
         .outputFormat("outputFormat")
         .outputS3Uri("outputS3Uri")
         .queryString("queryString")
         // the properties below are optional
         .kmsKeyId("kmsKeyId")
         .outputCompression("outputCompression")
         .workGroup("workGroup")
         .build();
 

See Also: