Class: Aws::CleanRooms::Types::TableReference

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

Overview

Note:

TableReference is a union - when making an API calls you must set exactly one of the members.

Note:

TableReference is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TableReference corresponding to the set member.

A pointer to the dataset that underlies this table. Currently, this can only be an Glue table.

Direct Known Subclasses

Glue, Unknown

Defined Under Namespace

Classes: Glue, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#glueTypes::GlueTableReference

If present, a reference to the Glue table referred to by this table reference.



5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 5322

class TableReference < Struct.new(
  :glue,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Glue < TableReference; end
  class Unknown < TableReference; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5322
5323
5324
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 5322

def unknown
  @unknown
end