Class: Aws::Glue::Types::JdbcTarget

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#connection_nameString

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

Returns:

  • (String)


9840
9841
9842
9843
9844
9845
9846
# File 'lib/aws-sdk-glue/types.rb', line 9840

class JdbcTarget < Struct.new(
  :connection_name,
  :path,
  :exclusions)
  SENSITIVE = []
  include Aws::Structure
end

#exclusionsArray<String>

A list of glob patterns used to exclude from the crawl. For more information, see [Catalog Tables with a Crawler].

[1]: docs.aws.amazon.com/glue/latest/dg/add-crawler.html

Returns:

  • (Array<String>)


9840
9841
9842
9843
9844
9845
9846
# File 'lib/aws-sdk-glue/types.rb', line 9840

class JdbcTarget < Struct.new(
  :connection_name,
  :path,
  :exclusions)
  SENSITIVE = []
  include Aws::Structure
end

#pathString

The path of the JDBC target.

Returns:

  • (String)


9840
9841
9842
9843
9844
9845
9846
# File 'lib/aws-sdk-glue/types.rb', line 9840

class JdbcTarget < Struct.new(
  :connection_name,
  :path,
  :exclusions)
  SENSITIVE = []
  include Aws::Structure
end