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")
         .exclusions(List.of("exclusions"))
         .path("path")
         .build();
 

See Also: