interface DataCatalogInputDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnDatasetPropsMixin_DataCatalogInputDefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnDatasetPropsMixin » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const dataCatalogInputDefinitionProperty: databrew_mixins.CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty = {
catalogId: 'catalogId',
databaseName: 'databaseName',
tableName: 'tableName',
tempDirectory: {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
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
Go
Java
Python
TypeScript