{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.Athena.Types.DataCatalog
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.Athena.Types.DataCatalog where

import Amazonka.Athena.Types.DataCatalogType
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude

-- | Contains information about a data catalog in an Amazon Web Services
-- account.
--
-- /See:/ 'newDataCatalog' smart constructor.
data DataCatalog = DataCatalog'
  { -- | Specifies the Lambda function or functions to use for the data catalog.
    -- This is a mapping whose values depend on the catalog type.
    --
    -- -   For the @HIVE@ data catalog type, use the following syntax. The
    --     @metadata-function@ parameter is required. @The sdk-version@
    --     parameter is optional and defaults to the currently supported
    --     version.
    --
    --     @metadata-function=lambda_arn, sdk-version=version_number @
    --
    -- -   For the @LAMBDA@ data catalog type, use one of the following sets of
    --     required parameters, but not both.
    --
    --     -   If you have one Lambda function that processes metadata and
    --         another for reading the actual data, use the following syntax.
    --         Both parameters are required.
    --
    --         @metadata-function=lambda_arn, record-function=lambda_arn @
    --
    --     -   If you have a composite Lambda function that processes both
    --         metadata and data, use the following syntax to specify your
    --         Lambda function.
    --
    --         @function=lambda_arn @
    --
    -- -   The @GLUE@ type takes a catalog ID parameter and is required. The
    --     @ catalog_id @ is the account ID of the Amazon Web Services account
    --     to which the Glue catalog belongs.
    --
    --     @catalog-id=catalog_id @
    --
    --     -   The @GLUE@ data catalog type also applies to the default
    --         @AwsDataCatalog@ that already exists in your account, of which
    --         you can have only one and cannot modify.
    --
    --     -   Queries that specify a Glue Data Catalog other than the default
    --         @AwsDataCatalog@ must be run on Athena engine version 2.
    DataCatalog -> Maybe (HashMap Text Text)
parameters :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
    -- | An optional description of the data catalog.
    DataCatalog -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
    -- | The name of the data catalog. The catalog name must be unique for the
    -- Amazon Web Services account and can use a maximum of 128 alphanumeric,
    -- underscore, at sign, or hyphen characters.
    DataCatalog -> Text
name :: Prelude.Text,
    -- | The type of data catalog to create: @LAMBDA@ for a federated catalog,
    -- @HIVE@ for an external hive metastore, or @GLUE@ for an Glue Data
    -- Catalog.
    DataCatalog -> DataCatalogType
type' :: DataCatalogType
  }
  deriving (DataCatalog -> DataCatalog -> Bool
(DataCatalog -> DataCatalog -> Bool)
-> (DataCatalog -> DataCatalog -> Bool) -> Eq DataCatalog
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DataCatalog -> DataCatalog -> Bool
$c/= :: DataCatalog -> DataCatalog -> Bool
== :: DataCatalog -> DataCatalog -> Bool
$c== :: DataCatalog -> DataCatalog -> Bool
Prelude.Eq, ReadPrec [DataCatalog]
ReadPrec DataCatalog
Int -> ReadS DataCatalog
ReadS [DataCatalog]
(Int -> ReadS DataCatalog)
-> ReadS [DataCatalog]
-> ReadPrec DataCatalog
-> ReadPrec [DataCatalog]
-> Read DataCatalog
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DataCatalog]
$creadListPrec :: ReadPrec [DataCatalog]
readPrec :: ReadPrec DataCatalog
$creadPrec :: ReadPrec DataCatalog
readList :: ReadS [DataCatalog]
$creadList :: ReadS [DataCatalog]
readsPrec :: Int -> ReadS DataCatalog
$creadsPrec :: Int -> ReadS DataCatalog
Prelude.Read, Int -> DataCatalog -> ShowS
[DataCatalog] -> ShowS
DataCatalog -> String
(Int -> DataCatalog -> ShowS)
-> (DataCatalog -> String)
-> ([DataCatalog] -> ShowS)
-> Show DataCatalog
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DataCatalog] -> ShowS
$cshowList :: [DataCatalog] -> ShowS
show :: DataCatalog -> String
$cshow :: DataCatalog -> String
showsPrec :: Int -> DataCatalog -> ShowS
$cshowsPrec :: Int -> DataCatalog -> ShowS
Prelude.Show, (forall x. DataCatalog -> Rep DataCatalog x)
-> (forall x. Rep DataCatalog x -> DataCatalog)
-> Generic DataCatalog
forall x. Rep DataCatalog x -> DataCatalog
forall x. DataCatalog -> Rep DataCatalog x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DataCatalog x -> DataCatalog
$cfrom :: forall x. DataCatalog -> Rep DataCatalog x
Prelude.Generic)

-- |
-- Create a value of 'DataCatalog' 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:
--
-- 'parameters', 'dataCatalog_parameters' - Specifies the Lambda function or functions to use for the data catalog.
-- This is a mapping whose values depend on the catalog type.
--
-- -   For the @HIVE@ data catalog type, use the following syntax. The
--     @metadata-function@ parameter is required. @The sdk-version@
--     parameter is optional and defaults to the currently supported
--     version.
--
--     @metadata-function=lambda_arn, sdk-version=version_number @
--
-- -   For the @LAMBDA@ data catalog type, use one of the following sets of
--     required parameters, but not both.
--
--     -   If you have one Lambda function that processes metadata and
--         another for reading the actual data, use the following syntax.
--         Both parameters are required.
--
--         @metadata-function=lambda_arn, record-function=lambda_arn @
--
--     -   If you have a composite Lambda function that processes both
--         metadata and data, use the following syntax to specify your
--         Lambda function.
--
--         @function=lambda_arn @
--
-- -   The @GLUE@ type takes a catalog ID parameter and is required. The
--     @ catalog_id @ is the account ID of the Amazon Web Services account
--     to which the Glue catalog belongs.
--
--     @catalog-id=catalog_id @
--
--     -   The @GLUE@ data catalog type also applies to the default
--         @AwsDataCatalog@ that already exists in your account, of which
--         you can have only one and cannot modify.
--
--     -   Queries that specify a Glue Data Catalog other than the default
--         @AwsDataCatalog@ must be run on Athena engine version 2.
--
-- 'description', 'dataCatalog_description' - An optional description of the data catalog.
--
-- 'name', 'dataCatalog_name' - The name of the data catalog. The catalog name must be unique for the
-- Amazon Web Services account and can use a maximum of 128 alphanumeric,
-- underscore, at sign, or hyphen characters.
--
-- 'type'', 'dataCatalog_type' - The type of data catalog to create: @LAMBDA@ for a federated catalog,
-- @HIVE@ for an external hive metastore, or @GLUE@ for an Glue Data
-- Catalog.
newDataCatalog ::
  -- | 'name'
  Prelude.Text ->
  -- | 'type''
  DataCatalogType ->
  DataCatalog
newDataCatalog :: Text -> DataCatalogType -> DataCatalog
newDataCatalog Text
pName_ DataCatalogType
pType_ =
  DataCatalog' :: Maybe (HashMap Text Text)
-> Maybe Text -> Text -> DataCatalogType -> DataCatalog
DataCatalog'
    { $sel:parameters:DataCatalog' :: Maybe (HashMap Text Text)
parameters = Maybe (HashMap Text Text)
forall a. Maybe a
Prelude.Nothing,
      $sel:description:DataCatalog' :: Maybe Text
description = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:name:DataCatalog' :: Text
name = Text
pName_,
      $sel:type':DataCatalog' :: DataCatalogType
type' = DataCatalogType
pType_
    }

-- | Specifies the Lambda function or functions to use for the data catalog.
-- This is a mapping whose values depend on the catalog type.
--
-- -   For the @HIVE@ data catalog type, use the following syntax. The
--     @metadata-function@ parameter is required. @The sdk-version@
--     parameter is optional and defaults to the currently supported
--     version.
--
--     @metadata-function=lambda_arn, sdk-version=version_number @
--
-- -   For the @LAMBDA@ data catalog type, use one of the following sets of
--     required parameters, but not both.
--
--     -   If you have one Lambda function that processes metadata and
--         another for reading the actual data, use the following syntax.
--         Both parameters are required.
--
--         @metadata-function=lambda_arn, record-function=lambda_arn @
--
--     -   If you have a composite Lambda function that processes both
--         metadata and data, use the following syntax to specify your
--         Lambda function.
--
--         @function=lambda_arn @
--
-- -   The @GLUE@ type takes a catalog ID parameter and is required. The
--     @ catalog_id @ is the account ID of the Amazon Web Services account
--     to which the Glue catalog belongs.
--
--     @catalog-id=catalog_id @
--
--     -   The @GLUE@ data catalog type also applies to the default
--         @AwsDataCatalog@ that already exists in your account, of which
--         you can have only one and cannot modify.
--
--     -   Queries that specify a Glue Data Catalog other than the default
--         @AwsDataCatalog@ must be run on Athena engine version 2.
dataCatalog_parameters :: Lens.Lens' DataCatalog (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
dataCatalog_parameters :: (Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
-> DataCatalog -> f DataCatalog
dataCatalog_parameters = (DataCatalog -> Maybe (HashMap Text Text))
-> (DataCatalog -> Maybe (HashMap Text Text) -> DataCatalog)
-> Lens
     DataCatalog
     DataCatalog
     (Maybe (HashMap Text Text))
     (Maybe (HashMap Text Text))
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DataCatalog' {Maybe (HashMap Text Text)
parameters :: Maybe (HashMap Text Text)
$sel:parameters:DataCatalog' :: DataCatalog -> Maybe (HashMap Text Text)
parameters} -> Maybe (HashMap Text Text)
parameters) (\s :: DataCatalog
s@DataCatalog' {} Maybe (HashMap Text Text)
a -> DataCatalog
s {$sel:parameters:DataCatalog' :: Maybe (HashMap Text Text)
parameters = Maybe (HashMap Text Text)
a} :: DataCatalog) ((Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
 -> DataCatalog -> f DataCatalog)
-> ((Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
    -> Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
-> (Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
-> DataCatalog
-> f DataCatalog
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
  (HashMap Text Text)
  (HashMap Text Text)
  (HashMap Text Text)
  (HashMap Text Text)
-> Iso
     (Maybe (HashMap Text Text))
     (Maybe (HashMap Text Text))
     (Maybe (HashMap Text Text))
     (Maybe (HashMap Text Text))
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso
  (HashMap Text Text)
  (HashMap Text Text)
  (HashMap Text Text)
  (HashMap Text Text)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | An optional description of the data catalog.
dataCatalog_description :: Lens.Lens' DataCatalog (Prelude.Maybe Prelude.Text)
dataCatalog_description :: (Maybe Text -> f (Maybe Text)) -> DataCatalog -> f DataCatalog
dataCatalog_description = (DataCatalog -> Maybe Text)
-> (DataCatalog -> Maybe Text -> DataCatalog)
-> Lens DataCatalog DataCatalog (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DataCatalog' {Maybe Text
description :: Maybe Text
$sel:description:DataCatalog' :: DataCatalog -> Maybe Text
description} -> Maybe Text
description) (\s :: DataCatalog
s@DataCatalog' {} Maybe Text
a -> DataCatalog
s {$sel:description:DataCatalog' :: Maybe Text
description = Maybe Text
a} :: DataCatalog)

-- | The name of the data catalog. The catalog name must be unique for the
-- Amazon Web Services account and can use a maximum of 128 alphanumeric,
-- underscore, at sign, or hyphen characters.
dataCatalog_name :: Lens.Lens' DataCatalog Prelude.Text
dataCatalog_name :: (Text -> f Text) -> DataCatalog -> f DataCatalog
dataCatalog_name = (DataCatalog -> Text)
-> (DataCatalog -> Text -> DataCatalog)
-> Lens DataCatalog DataCatalog Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DataCatalog' {Text
name :: Text
$sel:name:DataCatalog' :: DataCatalog -> Text
name} -> Text
name) (\s :: DataCatalog
s@DataCatalog' {} Text
a -> DataCatalog
s {$sel:name:DataCatalog' :: Text
name = Text
a} :: DataCatalog)

-- | The type of data catalog to create: @LAMBDA@ for a federated catalog,
-- @HIVE@ for an external hive metastore, or @GLUE@ for an Glue Data
-- Catalog.
dataCatalog_type :: Lens.Lens' DataCatalog DataCatalogType
dataCatalog_type :: (DataCatalogType -> f DataCatalogType)
-> DataCatalog -> f DataCatalog
dataCatalog_type = (DataCatalog -> DataCatalogType)
-> (DataCatalog -> DataCatalogType -> DataCatalog)
-> Lens DataCatalog DataCatalog DataCatalogType DataCatalogType
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DataCatalog' {DataCatalogType
type' :: DataCatalogType
$sel:type':DataCatalog' :: DataCatalog -> DataCatalogType
type'} -> DataCatalogType
type') (\s :: DataCatalog
s@DataCatalog' {} DataCatalogType
a -> DataCatalog
s {$sel:type':DataCatalog' :: DataCatalogType
type' = DataCatalogType
a} :: DataCatalog)

instance Core.FromJSON DataCatalog where
  parseJSON :: Value -> Parser DataCatalog
parseJSON =
    String
-> (Object -> Parser DataCatalog) -> Value -> Parser DataCatalog
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
      String
"DataCatalog"
      ( \Object
x ->
          Maybe (HashMap Text Text)
-> Maybe Text -> Text -> DataCatalogType -> DataCatalog
DataCatalog'
            (Maybe (HashMap Text Text)
 -> Maybe Text -> Text -> DataCatalogType -> DataCatalog)
-> Parser (Maybe (HashMap Text Text))
-> Parser (Maybe Text -> Text -> DataCatalogType -> DataCatalog)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe (Maybe (HashMap Text Text)))
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"Parameters" Parser (Maybe (Maybe (HashMap Text Text)))
-> Maybe (HashMap Text Text) -> Parser (Maybe (HashMap Text Text))
forall a. Parser (Maybe a) -> a -> Parser a
Core..!= Maybe (HashMap Text Text)
forall a. Monoid a => a
Prelude.mempty)
            Parser (Maybe Text -> Text -> DataCatalogType -> DataCatalog)
-> Parser (Maybe Text)
-> Parser (Text -> DataCatalogType -> DataCatalog)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"Description")
            Parser (Text -> DataCatalogType -> DataCatalog)
-> Parser Text -> Parser (DataCatalogType -> DataCatalog)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"Name")
            Parser (DataCatalogType -> DataCatalog)
-> Parser DataCatalogType -> Parser DataCatalog
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser DataCatalogType
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"Type")
      )

instance Prelude.Hashable DataCatalog

instance Prelude.NFData DataCatalog