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.
2462 2463 2464 2465 2466 2467 2468 2469 2470 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2462 class CatalogSource < Struct.new( :name, :database, :table, :partition_predicate, :output_schemas) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the data store.
2462 2463 2464 2465 2466 2467 2468 2469 2470 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2462 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.
2462 2463 2464 2465 2466 2467 2468 2469 2470 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2462 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.
2462 2463 2464 2465 2466 2467 2468 2469 2470 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2462 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.
2462 2463 2464 2465 2466 2467 2468 2469 2470 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2462 class CatalogSource < Struct.new( :name, :database, :table, :partition_predicate, :output_schemas) SENSITIVE = [] include Aws::Structure end |