Class: Aws::CleanRooms::Types::TableReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::TableReference
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#glue ⇒ Types::GlueTableReference
If present, a reference to the Glue table referred to by this table reference.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#glue ⇒ Types::GlueTableReference
If present, a reference to the Glue table referred to by this table reference.
7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7186 class TableReference < Struct.new( :glue, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Glue < TableReference; end class Unknown < TableReference; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7186 7187 7188 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7186 def unknown @unknown end |