| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Glue.Types.GlueTable
Description
Synopsis
- data GlueTable = GlueTable' {
- additionalOptions :: Maybe (HashMap Text Text)
- catalogId :: Maybe Text
- connectionName :: Maybe Text
- databaseName :: Text
- tableName :: Text
- newGlueTable :: Text -> Text -> GlueTable
- glueTable_additionalOptions :: Lens' GlueTable (Maybe (HashMap Text Text))
- glueTable_catalogId :: Lens' GlueTable (Maybe Text)
- glueTable_connectionName :: Lens' GlueTable (Maybe Text)
- glueTable_databaseName :: Lens' GlueTable Text
- glueTable_tableName :: Lens' GlueTable Text
Documentation
The database and table in the Glue Data Catalog that is used for input or output data.
See: newGlueTable smart constructor.
Constructors
| GlueTable' | |
Fields
| |
Instances
Create a value of GlueTable with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:additionalOptions:GlueTable', glueTable_additionalOptions - Additional options for the table. Currently there are two keys
supported:
pushDownPredicate: to filter on partitions without having to list and read all the files in your dataset.catalogPartitionPredicate: to use server-side partition pruning using partition indexes in the Glue Data Catalog.
$sel:catalogId:GlueTable', glueTable_catalogId - A unique identifier for the Glue Data Catalog.
$sel:connectionName:GlueTable', glueTable_connectionName - The name of the connection to the Glue Data Catalog.
$sel:databaseName:GlueTable', glueTable_databaseName - A database name in the Glue Data Catalog.
$sel:tableName:GlueTable', glueTable_tableName - A table name in the Glue Data Catalog.
glueTable_additionalOptions :: Lens' GlueTable (Maybe (HashMap Text Text)) Source #
Additional options for the table. Currently there are two keys supported:
pushDownPredicate: to filter on partitions without having to list and read all the files in your dataset.catalogPartitionPredicate: to use server-side partition pruning using partition indexes in the Glue Data Catalog.
glueTable_catalogId :: Lens' GlueTable (Maybe Text) Source #
A unique identifier for the Glue Data Catalog.