interface DatabaseInputDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnDatasetPropsMixin.DatabaseInputDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnDatasetPropsMixin_DatabaseInputDefinitionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnDatasetPropsMixin.DatabaseInputDefinitionProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnDatasetPropsMixin.DatabaseInputDefinitionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » 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 { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const databaseInputDefinitionProperty: databrew.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