interface DatabaseTableOutputOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnJob.DatabaseTableOutputOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnJob_DatabaseTableOutputOptionsProperty |
Java | software.amazon.awscdk.services.databrew.CfnJob.DatabaseTableOutputOptionsProperty |
Python | aws_cdk.aws_databrew.CfnJob.DatabaseTableOutputOptionsProperty |
TypeScript | aws-cdk-lib » aws_databrew » CfnJob » DatabaseTableOutputOptionsProperty |
Represents options that specify how and where DataBrew writes the database 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 { aws_databrew as databrew } from 'aws-cdk-lib';
const databaseTableOutputOptionsProperty: databrew.CfnJob.DatabaseTableOutputOptionsProperty = {
tableName: 'tableName',
// the properties below are optional
tempDirectory: {
bucket: 'bucket',
// the properties below are optional
bucketOwner: 'bucketOwner',
key: 'key',
},
};
Properties
Name | Type | Description |
---|---|---|
table | string | A prefix for the name of a table DataBrew will create in the database. |
temp | IResolvable | S3 | Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results. |
tableName
Type:
string
A prefix for the name of a table DataBrew will create in the database.
tempDirectory?
Type:
IResolvable
|
S3
(optional)
Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.