Class: Aws::Glue::Types::SparkSQL

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

Overview

Specifies a transform where you enter a SQL query using Spark SQL syntax to transform the data. The output is a single ‘DynamicFrame`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#inputsArray<String>

The data inputs identified by their node names. You can associate a table name with each input node to use in the SQL query. The name you choose must meet the Spark SQL naming restrictions.

Returns:

  • (Array<String>)


19683
19684
19685
19686
19687
19688
19689
19690
19691
# File 'lib/aws-sdk-glue/types.rb', line 19683

class SparkSQL < Struct.new(
  :name,
  :inputs,
  :sql_query,
  :sql_aliases,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the transform node.

Returns:

  • (String)


19683
19684
19685
19686
19687
19688
19689
19690
19691
# File 'lib/aws-sdk-glue/types.rb', line 19683

class SparkSQL < Struct.new(
  :name,
  :inputs,
  :sql_query,
  :sql_aliases,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end

#output_schemasArray<Types::GlueSchema>

Specifies the data schema for the SparkSQL transform.

Returns:



19683
19684
19685
19686
19687
19688
19689
19690
19691
# File 'lib/aws-sdk-glue/types.rb', line 19683

class SparkSQL < Struct.new(
  :name,
  :inputs,
  :sql_query,
  :sql_aliases,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end

#sql_aliasesArray<Types::SqlAlias>

A list of aliases. An alias allows you to specify what name to use in the SQL for a given input. For example, you have a datasource named “MyDataSource”. If you specify ‘From` as MyDataSource, and `Alias` as SqlName, then in your SQL you can do:

‘select * from SqlName`

and that gets data from MyDataSource.

Returns:



19683
19684
19685
19686
19687
19688
19689
19690
19691
# File 'lib/aws-sdk-glue/types.rb', line 19683

class SparkSQL < Struct.new(
  :name,
  :inputs,
  :sql_query,
  :sql_aliases,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end

#sql_queryString

A SQL query that must use Spark SQL syntax and return a single data set.

Returns:

  • (String)


19683
19684
19685
19686
19687
19688
19689
19690
19691
# File 'lib/aws-sdk-glue/types.rb', line 19683

class SparkSQL < Struct.new(
  :name,
  :inputs,
  :sql_query,
  :sql_aliases,
  :output_schemas)
  SENSITIVE = []
  include Aws::Structure
end