Class: Aws::Glue::Types::ConnectorDataSource

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Specifies a source generated with standard connection options.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#connection_typeString

The connectionType, as provided to the underlying Glue library. This node type supports the following connection types:

  • opensearch

  • azuresql

  • azurecosmos

  • bigquery

  • saphana

  • teradata

  • vertica

Returns:

  • (String)


4701
4702
4703
4704
4705
4706
4707
4708
# File 'lib/aws-sdk-glue/types.rb', line 4701

class ConnectorDataSource < Struct.new(
  :name,
  :connection_type,
  :data,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end

#dataHash<String,String>

A map specifying connection options for the node. You can find standard connection options for the corresponding connection type in the [ Connection parameters] section of the Glue documentation.

[1]: docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-connect.html

Returns:

  • (Hash<String,String>)


4701
4702
4703
4704
4705
4706
4707
4708
# File 'lib/aws-sdk-glue/types.rb', line 4701

class ConnectorDataSource < Struct.new(
  :name,
  :connection_type,
  :data,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of this source node.

Returns:

  • (String)


4701
4702
4703
4704
4705
4706
4707
4708
# File 'lib/aws-sdk-glue/types.rb', line 4701

class ConnectorDataSource < Struct.new(
  :name,
  :connection_type,
  :data,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end

#output_schemasArray<Types::GlueSchema>

Specifies the data schema for this source.

Returns:



4701
4702
4703
4704
4705
4706
4707
4708
# File 'lib/aws-sdk-glue/types.rb', line 4701

class ConnectorDataSource < Struct.new(
  :name,
  :connection_type,
  :data,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end