Class: Aws::CleanRooms::Types::GlueTableReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::GlueTableReference
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
A reference to a table within an Glue data catalog.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_name ⇒ String
The name of the database the Glue table belongs to.
-
#region ⇒ String
The Amazon Web Services Region where the Glue table is located.
-
#table_name ⇒ String
The name of the Glue table.
Instance Attribute Details
#database_name ⇒ String
The name of the database the Glue table belongs to.
5232 5233 5234 5235 5236 5237 5238 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 5232 class GlueTableReference < Struct.new( :region, :table_name, :database_name) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Amazon Web Services Region where the Glue table is located. This parameter is required to uniquely identify and access tables across different Regions.
5232 5233 5234 5235 5236 5237 5238 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 5232 class GlueTableReference < Struct.new( :region, :table_name, :database_name) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the Glue table.
5232 5233 5234 5235 5236 5237 5238 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 5232 class GlueTableReference < Struct.new( :region, :table_name, :database_name) SENSITIVE = [] include Aws::Structure end |