interface DatabaseOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnJobPropsMixin.DatabaseOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnJobPropsMixin_DatabaseOutputProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnJobPropsMixin.DatabaseOutputProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnJobPropsMixin.DatabaseOutputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnJobPropsMixin » DatabaseOutputProperty |
Represents a JDBC database output object which defines the output destination for a DataBrew recipe job to write into.
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 databaseOutputProperty: databrew_mixins.CfnJobPropsMixin.DatabaseOutputProperty = {
databaseOptions: {
tableName: 'tableName',
tempDirectory: {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
key: 'key',
},
},
databaseOutputMode: 'databaseOutputMode',
glueConnectionName: 'glueConnectionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | IResolvable | Database | Represents options that specify how and where DataBrew writes the database output generated by recipe jobs. |
| database | string | The output mode to write into the database. |
| glue | string | The AWS Glue connection that stores the connection information for the target database. |
databaseOptions?
Type:
IResolvable | Database
(optional)
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
databaseOutputMode?
Type:
string
(optional)
The output mode to write into the database.
Currently supported option: NEW_TABLE.
glueConnectionName?
Type:
string
(optional)
The AWS Glue connection that stores the connection information for the target database.

.NET
Go
Java
Python
TypeScript