Class: Aws::Glue::Types::CatalogSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CatalogSource
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Specifies a data store in the Glue Data Catalog.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database ⇒ String
The name of the database to read from.
-
#name ⇒ String
The name of the data store.
-
#output_schemas ⇒ Array<Types::GlueSchema>
Specifies the data schema for the catalog source.
-
#partition_predicate ⇒ String
Partitions satisfying this predicate are deleted.
-
#table ⇒ String
The name of the table in the database to read from.
Instance Attribute Details
#database ⇒ String
The name of the database to read from.
2454 2455 2456 2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2454 class CatalogSource < Struct.new( :name, :database, :table, :partition_predicate, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the data store.
2454 2455 2456 2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2454 class CatalogSource < Struct.new( :name, :database, :table, :partition_predicate, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#output_schemas ⇒ Array<Types::GlueSchema>
Specifies the data schema for the catalog source.
2454 2455 2456 2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2454 class CatalogSource < Struct.new( :name, :database, :table, :partition_predicate, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#partition_predicate ⇒ String
Partitions satisfying this predicate are deleted. Files within the retention period in these partitions are not deleted.
2454 2455 2456 2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2454 class CatalogSource < Struct.new( :name, :database, :table, :partition_predicate, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#table ⇒ String
The name of the table in the database to read from.
2454 2455 2456 2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2454 class CatalogSource < Struct.new( :name, :database, :table, :partition_predicate, :output_schemas) SENSITIVE = [] include Aws::Structure end |