Interface CfnDataset.DatabaseInputDefinitionProperty

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

@Stability(Stable) public static interface CfnDataset.DatabaseInputDefinitionProperty extends software.amazon.jsii.JsiiSerializable
Connection information for dataset input files stored in a database.

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.databrew.*;
 DatabaseInputDefinitionProperty databaseInputDefinitionProperty = DatabaseInputDefinitionProperty.builder()
         .glueConnectionName("glueConnectionName")
         // the properties below are optional
         .databaseTableName("databaseTableName")
         .queryString("queryString")
         .tempDirectory(S3LocationProperty.builder()
                 .bucket("bucket")
                 // the properties below are optional
                 .key("key")
                 .build())
         .build();
 

See Also: