aws-cdk-lib.aws_glue.CfnCrawler.JdbcTargetProperty

interface JdbcTargetProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnCrawler.JdbcTargetProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnCrawler_JdbcTargetProperty
Javasoftware.amazon.awscdk.services.glue.CfnCrawler.JdbcTargetProperty
Pythonaws_cdk.aws_glue.CfnCrawler.JdbcTargetProperty
TypeScript aws-cdk-lib » aws_glue » CfnCrawler » 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 { aws_glue as glue } from 'aws-cdk-lib';
const jdbcTargetProperty: glue.CfnCrawler.JdbcTargetProperty = {
  connectionName: 'connectionName',
  exclusions: ['exclusions'],
  path: 'path',
};

Properties

NameTypeDescription
connectionName?stringThe name of the connection to use to connect to the JDBC target.
exclusions?string[]A list of glob patterns used to exclude from the crawl.
path?stringThe path of the JDBC target.

connectionName?

Type: string (optional)

The name of the connection to use to connect to the JDBC target.


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.