amazonka-glue-2.0: gen/Amazonka/Glue/GetTable.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.Glue.GetTable
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Retrieves the @Table@ definition in a Data Catalog for a specified
-- table.
module Amazonka.Glue.GetTable
( -- * Creating a Request
GetTable (..),
newGetTable,
-- * Request Lenses
getTable_catalogId,
getTable_queryAsOfTime,
getTable_transactionId,
getTable_databaseName,
getTable_name,
-- * Destructuring the Response
GetTableResponse (..),
newGetTableResponse,
-- * Response Lenses
getTableResponse_table,
getTableResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.Glue.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newGetTable' smart constructor.
data GetTable = GetTable'
{ -- | The ID of the Data Catalog where the table resides. If none is provided,
-- the Amazon Web Services account ID is used by default.
catalogId :: Prelude.Maybe Prelude.Text,
-- | The time as of when to read the table contents. If not set, the most
-- recent transaction commit time will be used. Cannot be specified along
-- with @TransactionId@.
queryAsOfTime :: Prelude.Maybe Data.POSIX,
-- | The transaction ID at which to read the table contents.
transactionId :: Prelude.Maybe Prelude.Text,
-- | The name of the database in the catalog in which the table resides. For
-- Hive compatibility, this name is entirely lowercase.
databaseName :: Prelude.Text,
-- | The name of the table for which to retrieve the definition. For Hive
-- compatibility, this name is entirely lowercase.
name :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'GetTable' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'catalogId', 'getTable_catalogId' - The ID of the Data Catalog where the table resides. If none is provided,
-- the Amazon Web Services account ID is used by default.
--
-- 'queryAsOfTime', 'getTable_queryAsOfTime' - The time as of when to read the table contents. If not set, the most
-- recent transaction commit time will be used. Cannot be specified along
-- with @TransactionId@.
--
-- 'transactionId', 'getTable_transactionId' - The transaction ID at which to read the table contents.
--
-- 'databaseName', 'getTable_databaseName' - The name of the database in the catalog in which the table resides. For
-- Hive compatibility, this name is entirely lowercase.
--
-- 'name', 'getTable_name' - The name of the table for which to retrieve the definition. For Hive
-- compatibility, this name is entirely lowercase.
newGetTable ::
-- | 'databaseName'
Prelude.Text ->
-- | 'name'
Prelude.Text ->
GetTable
newGetTable pDatabaseName_ pName_ =
GetTable'
{ catalogId = Prelude.Nothing,
queryAsOfTime = Prelude.Nothing,
transactionId = Prelude.Nothing,
databaseName = pDatabaseName_,
name = pName_
}
-- | The ID of the Data Catalog where the table resides. If none is provided,
-- the Amazon Web Services account ID is used by default.
getTable_catalogId :: Lens.Lens' GetTable (Prelude.Maybe Prelude.Text)
getTable_catalogId = Lens.lens (\GetTable' {catalogId} -> catalogId) (\s@GetTable' {} a -> s {catalogId = a} :: GetTable)
-- | The time as of when to read the table contents. If not set, the most
-- recent transaction commit time will be used. Cannot be specified along
-- with @TransactionId@.
getTable_queryAsOfTime :: Lens.Lens' GetTable (Prelude.Maybe Prelude.UTCTime)
getTable_queryAsOfTime = Lens.lens (\GetTable' {queryAsOfTime} -> queryAsOfTime) (\s@GetTable' {} a -> s {queryAsOfTime = a} :: GetTable) Prelude.. Lens.mapping Data._Time
-- | The transaction ID at which to read the table contents.
getTable_transactionId :: Lens.Lens' GetTable (Prelude.Maybe Prelude.Text)
getTable_transactionId = Lens.lens (\GetTable' {transactionId} -> transactionId) (\s@GetTable' {} a -> s {transactionId = a} :: GetTable)
-- | The name of the database in the catalog in which the table resides. For
-- Hive compatibility, this name is entirely lowercase.
getTable_databaseName :: Lens.Lens' GetTable Prelude.Text
getTable_databaseName = Lens.lens (\GetTable' {databaseName} -> databaseName) (\s@GetTable' {} a -> s {databaseName = a} :: GetTable)
-- | The name of the table for which to retrieve the definition. For Hive
-- compatibility, this name is entirely lowercase.
getTable_name :: Lens.Lens' GetTable Prelude.Text
getTable_name = Lens.lens (\GetTable' {name} -> name) (\s@GetTable' {} a -> s {name = a} :: GetTable)
instance Core.AWSRequest GetTable where
type AWSResponse GetTable = GetTableResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
GetTableResponse'
Prelude.<$> (x Data..?> "Table")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable GetTable where
hashWithSalt _salt GetTable' {..} =
_salt
`Prelude.hashWithSalt` catalogId
`Prelude.hashWithSalt` queryAsOfTime
`Prelude.hashWithSalt` transactionId
`Prelude.hashWithSalt` databaseName
`Prelude.hashWithSalt` name
instance Prelude.NFData GetTable where
rnf GetTable' {..} =
Prelude.rnf catalogId
`Prelude.seq` Prelude.rnf queryAsOfTime
`Prelude.seq` Prelude.rnf transactionId
`Prelude.seq` Prelude.rnf databaseName
`Prelude.seq` Prelude.rnf name
instance Data.ToHeaders GetTable where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ("AWSGlue.GetTable" :: Prelude.ByteString),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON GetTable where
toJSON GetTable' {..} =
Data.object
( Prelude.catMaybes
[ ("CatalogId" Data..=) Prelude.<$> catalogId,
("QueryAsOfTime" Data..=) Prelude.<$> queryAsOfTime,
("TransactionId" Data..=) Prelude.<$> transactionId,
Prelude.Just ("DatabaseName" Data..= databaseName),
Prelude.Just ("Name" Data..= name)
]
)
instance Data.ToPath GetTable where
toPath = Prelude.const "/"
instance Data.ToQuery GetTable where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newGetTableResponse' smart constructor.
data GetTableResponse = GetTableResponse'
{ -- | The @Table@ object that defines the specified table.
table :: Prelude.Maybe Table,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'GetTableResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'table', 'getTableResponse_table' - The @Table@ object that defines the specified table.
--
-- 'httpStatus', 'getTableResponse_httpStatus' - The response's http status code.
newGetTableResponse ::
-- | 'httpStatus'
Prelude.Int ->
GetTableResponse
newGetTableResponse pHttpStatus_ =
GetTableResponse'
{ table = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The @Table@ object that defines the specified table.
getTableResponse_table :: Lens.Lens' GetTableResponse (Prelude.Maybe Table)
getTableResponse_table = Lens.lens (\GetTableResponse' {table} -> table) (\s@GetTableResponse' {} a -> s {table = a} :: GetTableResponse)
-- | The response's http status code.
getTableResponse_httpStatus :: Lens.Lens' GetTableResponse Prelude.Int
getTableResponse_httpStatus = Lens.lens (\GetTableResponse' {httpStatus} -> httpStatus) (\s@GetTableResponse' {} a -> s {httpStatus = a} :: GetTableResponse)
instance Prelude.NFData GetTableResponse where
rnf GetTableResponse' {..} =
Prelude.rnf table
`Prelude.seq` Prelude.rnf httpStatus