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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCrawler.JdbcTargetPropertystatic final classAn implementation forCfnCrawler.JdbcTargetProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the connection to use to connect to the JDBC target.Specify a value ofRAWTYPESorCOMMENTSto enable additional metadata in table responses.A list of glob patterns used to exclude from the crawl.default StringgetPath()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 ofRAWTYPESorCOMMENTSto enable additional metadata in table responses.RAWTYPESprovides the native-level datatype.COMMENTSprovides 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
-