module Stratosphere.Athena.DataCatalog (
        DataCatalog(..), mkDataCatalog
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data DataCatalog
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html>
    DataCatalog {DataCatalog -> ()
haddock_workaround_ :: (),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-connectiontype>
                 DataCatalog -> Maybe (Value Text)
connectionType :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-description>
                 DataCatalog -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-error>
                 DataCatalog -> Maybe (Value Text)
error :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-name>
                 DataCatalog -> Value Text
name :: (Value Prelude.Text),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-parameters>
                 DataCatalog -> Maybe (Map Text (Value Text))
parameters :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text))),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-status>
                 DataCatalog -> Maybe (Value Text)
status :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-tags>
                 DataCatalog -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-datacatalog.html#cfn-athena-datacatalog-type>
                 DataCatalog -> Value Text
type' :: (Value Prelude.Text)}
  deriving stock (DataCatalog -> DataCatalog -> Bool
(DataCatalog -> DataCatalog -> Bool)
-> (DataCatalog -> DataCatalog -> Bool) -> Eq DataCatalog
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: DataCatalog -> DataCatalog -> Bool
== :: DataCatalog -> DataCatalog -> Bool
$c/= :: DataCatalog -> DataCatalog -> Bool
/= :: DataCatalog -> DataCatalog -> Bool
Prelude.Eq, 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
$cshowsPrec :: Int -> DataCatalog -> ShowS
showsPrec :: Int -> DataCatalog -> ShowS
$cshow :: DataCatalog -> String
show :: DataCatalog -> String
$cshowList :: [DataCatalog] -> ShowS
showList :: [DataCatalog] -> ShowS
Prelude.Show)
mkDataCatalog ::
  Value Prelude.Text -> Value Prelude.Text -> DataCatalog
mkDataCatalog :: Value Text -> Value Text -> DataCatalog
mkDataCatalog Value Text
name Value Text
type'
  = DataCatalog
      {haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name, type' :: Value Text
type' = Value Text
type',
       connectionType :: Maybe (Value Text)
connectionType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       error :: Maybe (Value Text)
error = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, parameters :: Maybe (Map Text (Value Text))
parameters = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing,
       status :: Maybe (Value Text)
status = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties DataCatalog where
  toResourceProperties :: DataCatalog -> ResourceProperties
toResourceProperties DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::Athena::DataCatalog", supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
                           [Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name, Key
"Type" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
type']
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ConnectionType" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
connectionType,
                               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
                               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Error" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
error,
                               Key -> Map Text (Value Text) -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Parameters" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
parameters,
                               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Status" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
status,
                               Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON DataCatalog where
  toJSON :: DataCatalog -> Value
toJSON DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
              [Key
"Name" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
name, Key
"Type" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
type']
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ConnectionType" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
connectionType,
                  Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
                  Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Error" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
error,
                  Key -> Map Text (Value Text) -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Parameters" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
parameters,
                  Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Status" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
status,
                  Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "ConnectionType" DataCatalog where
  type PropertyType "ConnectionType" DataCatalog = Value Prelude.Text
  set :: PropertyType "ConnectionType" DataCatalog
-> DataCatalog -> DataCatalog
set PropertyType "ConnectionType" DataCatalog
newValue DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
    = DataCatalog {connectionType :: Maybe (Value Text)
connectionType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ConnectionType" DataCatalog
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "Description" DataCatalog where
  type PropertyType "Description" DataCatalog = Value Prelude.Text
  set :: PropertyType "Description" DataCatalog
-> DataCatalog -> DataCatalog
set PropertyType "Description" DataCatalog
newValue DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
    = DataCatalog {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" DataCatalog
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "Error" DataCatalog where
  type PropertyType "Error" DataCatalog = Value Prelude.Text
  set :: PropertyType "Error" DataCatalog -> DataCatalog -> DataCatalog
set PropertyType "Error" DataCatalog
newValue DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
    = DataCatalog {error :: Maybe (Value Text)
error = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Error" DataCatalog
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "Name" DataCatalog where
  type PropertyType "Name" DataCatalog = Value Prelude.Text
  set :: PropertyType "Name" DataCatalog -> DataCatalog -> DataCatalog
set PropertyType "Name" DataCatalog
newValue DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..} = DataCatalog {name :: Value Text
name = PropertyType "Name" DataCatalog
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "Parameters" DataCatalog where
  type PropertyType "Parameters" DataCatalog = Prelude.Map Prelude.Text (Value Prelude.Text)
  set :: PropertyType "Parameters" DataCatalog -> DataCatalog -> DataCatalog
set PropertyType "Parameters" DataCatalog
newValue DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
    = DataCatalog {parameters :: Maybe (Map Text (Value Text))
parameters = Map Text (Value Text) -> Maybe (Map Text (Value Text))
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Map Text (Value Text)
PropertyType "Parameters" DataCatalog
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "Status" DataCatalog where
  type PropertyType "Status" DataCatalog = Value Prelude.Text
  set :: PropertyType "Status" DataCatalog -> DataCatalog -> DataCatalog
set PropertyType "Status" DataCatalog
newValue DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
    = DataCatalog {status :: Maybe (Value Text)
status = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Status" DataCatalog
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "Tags" DataCatalog where
  type PropertyType "Tags" DataCatalog = [Tag]
  set :: PropertyType "Tags" DataCatalog -> DataCatalog -> DataCatalog
set PropertyType "Tags" DataCatalog
newValue DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..}
    = DataCatalog {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" DataCatalog
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
type' :: Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
type' :: Value Text
..}
instance Property "Type" DataCatalog where
  type PropertyType "Type" DataCatalog = Value Prelude.Text
  set :: PropertyType "Type" DataCatalog -> DataCatalog -> DataCatalog
set PropertyType "Type" DataCatalog
newValue DataCatalog {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: DataCatalog -> ()
connectionType :: DataCatalog -> Maybe (Value Text)
description :: DataCatalog -> Maybe (Value Text)
error :: DataCatalog -> Maybe (Value Text)
name :: DataCatalog -> Value Text
parameters :: DataCatalog -> Maybe (Map Text (Value Text))
status :: DataCatalog -> Maybe (Value Text)
tags :: DataCatalog -> Maybe [Tag]
type' :: DataCatalog -> Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
type' :: Value Text
..} = DataCatalog {type' :: Value Text
type' = PropertyType "Type" DataCatalog
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
connectionType :: Maybe (Value Text)
description :: Maybe (Value Text)
error :: Maybe (Value Text)
name :: Value Text
parameters :: Maybe (Map Text (Value Text))
status :: Maybe (Value Text)
tags :: Maybe [Tag]
..}