Interface CfnRecipe.DataCatalogInputDefinitionProperty

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

@Stability(Stable) public static interface CfnRecipe.DataCatalogInputDefinitionProperty extends software.amazon.jsii.JsiiSerializable
Represents how metadata stored in the AWS Glue Data Catalog is defined in a DataBrew dataset.

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.*;
 DataCatalogInputDefinitionProperty dataCatalogInputDefinitionProperty = DataCatalogInputDefinitionProperty.builder()
         .catalogId("catalogId")
         .databaseName("databaseName")
         .tableName("tableName")
         .tempDirectory(S3LocationProperty.builder()
                 .bucket("bucket")
                 // the properties below are optional
                 .key("key")
                 .build())
         .build();