interface DatabaseInputDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnDatasetPropsMixin.DatabaseInputDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnDatasetPropsMixin_DatabaseInputDefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnDatasetPropsMixin.DatabaseInputDefinitionProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnDatasetPropsMixin.DatabaseInputDefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnDatasetPropsMixin » DatabaseInputDefinitionProperty |
Connection information for dataset input files stored in a database.
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 databaseInputDefinitionProperty: databrew_mixins.CfnDatasetPropsMixin.DatabaseInputDefinitionProperty = {
databaseTableName: 'databaseTableName',
glueConnectionName: 'glueConnectionName',
queryString: 'queryString',
tempDirectory: {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
key: 'key',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The table within the target database. |
| glue | string | The AWS Glue Connection that stores the connection information for the target database. |
| query | string | Custom SQL to run against the provided AWS Glue connection. |
| temp | IResolvable | S3 | An Amazon location that AWS Glue Data Catalog can use as a temporary directory. |
databaseTableName?
Type:
string
(optional)
The table within the target database.
glueConnectionName?
Type:
string
(optional)
The AWS Glue Connection that stores the connection information for the target database.
queryString?
Type:
string
(optional)
Custom SQL to run against the provided AWS Glue connection.
This SQL will be used as the input for DataBrew projects and jobs.
tempDirectory?
Type:
IResolvable | S3
(optional)
An Amazon location that AWS Glue Data Catalog can use as a temporary directory.

.NET
Go
Java
Python
TypeScript