{-# 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 #-}
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
data DataCatalog = DataCatalog'
{
DataCatalog -> Maybe (HashMap Text Text)
parameters :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
DataCatalog -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
DataCatalog -> Text
name :: Prelude.Text,
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)
newDataCatalog ::
Prelude.Text ->
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_
}
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
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)
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)
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