Interface CfnCrawler.JdbcTargetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCrawler.JdbcTargetProperty.Jsii$Proxy
- Enclosing class:
CfnCrawler
@Stability(Stable)
public static interface CfnCrawler.JdbcTargetProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.glue.*; JdbcTargetProperty jdbcTargetProperty = JdbcTargetProperty.builder() .connectionName("connectionName") .enableAdditionalMetadata(List.of("enableAdditionalMetadata")) .exclusions(List.of("exclusions")) .path("path") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCrawler.JdbcTargetProperty
static final class
An implementation forCfnCrawler.JdbcTargetProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the connection to use to connect to the JDBC target.Specify a value ofRAWTYPES
orCOMMENTS
to enable additional metadata in table responses.A list of glob patterns used to exclude from the crawl.default String
getPath()
The path of the JDBC target.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionName
The name of the connection to use to connect to the JDBC target.- See Also:
-
getEnableAdditionalMetadata
Specify a value ofRAWTYPES
orCOMMENTS
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.
- See Also:
-
getExclusions
A list of glob patterns used to exclude from the crawl.For more information, see Catalog Tables with a Crawler .
- See Also:
-
getPath
The path of the JDBC target.- See Also:
-
builder
-