interface DatabaseTableOutputOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnJobPropsMixin.DatabaseTableOutputOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnJobPropsMixin_DatabaseTableOutputOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnJobPropsMixin.DatabaseTableOutputOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnJobPropsMixin.DatabaseTableOutputOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » CfnJobPropsMixin » 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/cfn-property-mixins';
const databaseTableOutputOptionsProperty: databrew.CfnJobPropsMixin.DatabaseTableOutputOptionsProperty = {
tableName: 'tableName',
tempDirectory: {
bucket: 'bucket',
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
(optional)
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.

.NET
Go
Java
Python
TypeScript