interface JdbcTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnCrawlerPropsMixin.JdbcTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnCrawlerPropsMixin_JdbcTargetProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnCrawlerPropsMixin.JdbcTargetProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnCrawlerPropsMixin.JdbcTargetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnCrawlerPropsMixin » JdbcTargetProperty |
Specifies a JDBC data store to crawl.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const jdbcTargetProperty: glue_mixins.CfnCrawlerPropsMixin.JdbcTargetProperty = {
connectionName: 'connectionName',
enableAdditionalMetadata: ['enableAdditionalMetadata'],
exclusions: ['exclusions'],
path: 'path',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The name of the connection to use to connect to the JDBC target. |
| enable | string[] | Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. |
| exclusions? | string[] | A list of glob patterns used to exclude from the crawl. |
| path? | string | The path of the JDBC target. |
connectionName?
Type:
string
(optional)
The name of the connection to use to connect to the JDBC target.
enableAdditionalMetadata?
Type:
string[]
(optional)
Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses.
RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
If you do not need additional metadata, keep the field empty.
exclusions?
Type:
string[]
(optional)
A list of glob patterns used to exclude from the crawl.
For more information, see Catalog Tables with a Crawler .
path?
Type:
string
(optional)
The path of the JDBC target.

.NET
Go
Java
Python
TypeScript