Class: Aws::Glue::Types::SqlAlias

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

Overview

Represents a single entry in the list of values for SqlAliases.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aliasString

A temporary name given to a table, or a column in a table.

Returns:

  • (String)


20361
20362
20363
20364
20365
20366
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 20361

class SqlAlias < Struct.new(
  :from,
  :alias)
  SENSITIVE = []
  include Aws::Structure
end

#fromString

A table, or a column in a table.

Returns:

  • (String)


20361
20362
20363
20364
20365
20366
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 20361

class SqlAlias < Struct.new(
  :from,
  :alias)
  SENSITIVE = []
  include Aws::Structure
end