interface DataCatalogOutputProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnJob.DataCatalogOutputProperty |
Java | software.amazon.awscdk.services.databrew.CfnJob.DataCatalogOutputProperty |
Python | aws_cdk.aws_databrew.CfnJob.DataCatalogOutputProperty |
TypeScript | @aws-cdk/aws-databrew » CfnJob » DataCatalogOutputProperty |
Represents options that specify how and where in the AWS Glue Data Catalog DataBrew writes the output generated by recipe jobs.
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 dataCatalogOutputProperty: databrew.CfnJob.DataCatalogOutputProperty = {
databaseName: 'databaseName',
tableName: 'tableName',
// the properties below are optional
catalogId: 'catalogId',
databaseOptions: {
tableName: 'tableName',
// the properties below are optional
tempDirectory: {
bucket: 'bucket',
// the properties below are optional
bucketOwner: 'bucketOwner',
key: 'key',
},
},
overwrite: false,
s3Options: {
location: {
bucket: 'bucket',
// the properties below are optional
bucketOwner: 'bucketOwner',
key: 'key',
},
},
};
Properties
Name | Type | Description |
---|---|---|
database | string | The name of a database in the Data Catalog. |
table | string | The name of a table in the Data Catalog. |
catalog | string | The unique identifier of the AWS account that holds the Data Catalog that stores the data. |
database | IResolvable | Database | Represents options that specify how and where DataBrew writes the database output generated by recipe jobs. |
overwrite? | boolean | IResolvable | A value that, if true, means that any data in the location specified for output is overwritten with new output. |
s3 | IResolvable | S3 | Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs. |
databaseName
Type:
string
The name of a database in the Data Catalog.
tableName
Type:
string
The name of a table in the Data Catalog.
catalogId?
Type:
string
(optional)
The unique identifier of the AWS account that holds the Data Catalog that stores the data.
databaseOptions?
Type:
IResolvable
|
Database
(optional)
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
overwrite?
Type:
boolean |
IResolvable
(optional)
A value that, if true, means that any data in the location specified for output is overwritten with new output.
Not supported with DatabaseOptions.
s3Options?
Type:
IResolvable
|
S3
(optional)
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.