interface DataCatalogInputDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnDatasetPropsMixin_DataCatalogInputDefinitionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnDatasetPropsMixin.DataCatalogInputDefinitionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const dataCatalogInputDefinitionProperty: databrew.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