Class: Aws::IoTAnalytics::Types::GlueConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::GlueConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotanalytics/types.rb
Overview
Configuration information for coordination with Glue, a fully managed extract, transform and load (ETL) service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_name ⇒ String
The name of the database in your Glue Data Catalog in which the table is located.
-
#table_name ⇒ String
The name of the table in your Glue Data Catalog that is used to perform the ETL operations.
Instance Attribute Details
#database_name ⇒ String
The name of the database in your Glue Data Catalog in which the table is located. An Glue Data Catalog database contains metadata tables.
1812 1813 1814 1815 1816 1817 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 1812 class GlueConfiguration < Struct.new( :table_name, :database_name) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the table in your Glue Data Catalog that is used to perform the ETL operations. An Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.
1812 1813 1814 1815 1816 1817 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 1812 class GlueConfiguration < Struct.new( :table_name, :database_name) SENSITIVE = [] include Aws::Structure end |