interface DataCatalogInputDefinitionProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.DataBrew.CfnDataset.DataCatalogInputDefinitionProperty | 
  Java | software.amazon.awscdk.services.databrew.CfnDataset.DataCatalogInputDefinitionProperty | 
  Python | aws_cdk.aws_databrew.CfnDataset.DataCatalogInputDefinitionProperty | 
  TypeScript  | @aws-cdk/aws-databrew » CfnDataset » DataCatalogInputDefinitionProperty | 
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 * as databrew from '@aws-cdk/aws-databrew';
const dataCatalogInputDefinitionProperty: databrew.CfnDataset.DataCatalogInputDefinitionProperty = {
  catalogId: 'catalogId',
  databaseName: 'databaseName',
  tableName: 'tableName',
  tempDirectory: {
    bucket: 'bucket',
    // the properties below are optional
    key: 'key',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| catalog | string | The unique identifier of the AWS account that holds the Data Catalog that stores the data. | 
| database | string | The name of a database in the Data Catalog. | 
| table | string | The name of a database table in the Data Catalog. | 
| temp | IResolvable | S3 | An Amazon location that AWS Glue Data Catalog can use as a temporary directory. | 
catalogId?
Type:
string
(optional)
The unique identifier of the AWS account that holds the Data Catalog that stores the data.
databaseName?
Type:
string
(optional)
The name of a database in the Data Catalog.
tableName?
Type:
string
(optional)
The name of a database table in the Data Catalog.
This table corresponds to a DataBrew dataset.
tempDirectory?
Type:
IResolvable | S3
(optional)
An Amazon location that AWS Glue Data Catalog can use as a temporary directory.

 .NET
 Java
 Python
 TypeScript