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.



25187
25188
25189
25190
25191
25192
25193
25194
25195
# File 'lib/aws-sdk-glue/types.rb', line 25187

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

#nameString

The name of the transform node.



25187
25188
25189
25190
25191
25192
25193
25194
25195
# File 'lib/aws-sdk-glue/types.rb', line 25187

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.



25187
25188
25189
25190
25191
25192
25193
25194
25195
# File 'lib/aws-sdk-glue/types.rb', line 25187

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.



25187
25188
25189
25190
25191
25192
25193
25194
25195
# File 'lib/aws-sdk-glue/types.rb', line 25187

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.



25187
25188
25189
25190
25191
25192
25193
25194
25195
# File 'lib/aws-sdk-glue/types.rb', line 25187

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