Class: Aws::Glue::Types::JdbcTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::JdbcTarget
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass JdbcTarget data as a hash:
{
connection_name: "ConnectionName",
path: "Path",
exclusions: ["Path"],
}
Specifies a JDBC data store to crawl.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_name ⇒ String
The name of the connection to use to connect to the JDBC target.
-
#exclusions ⇒ Array<String>
A list of glob patterns used to exclude from the crawl.
-
#path ⇒ String
The path of the JDBC target.
Instance Attribute Details
#connection_name ⇒ String
The name of the connection to use to connect to the JDBC target.
14487 14488 14489 14490 14491 14492 14493 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 14487 class JdbcTarget < Struct.new( :connection_name, :path, :exclusions) SENSITIVE = [] include Aws::Structure end |
#exclusions ⇒ Array<String>
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
14487 14488 14489 14490 14491 14492 14493 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 14487 class JdbcTarget < Struct.new( :connection_name, :path, :exclusions) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path of the JDBC target.
14487 14488 14489 14490 14491 14492 14493 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 14487 class JdbcTarget < Struct.new( :connection_name, :path, :exclusions) SENSITIVE = [] include Aws::Structure end |