module Stratosphere.Omics.AnnotationStore (
        module Exports, AnnotationStore(..), mkAnnotationStore
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Omics.AnnotationStore.ReferenceItemProperty as Exports
import {-# SOURCE #-} Stratosphere.Omics.AnnotationStore.SseConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.Omics.AnnotationStore.StoreOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data AnnotationStore
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html>
    AnnotationStore {AnnotationStore -> ()
haddock_workaround_ :: (),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html#cfn-omics-annotationstore-description>
                     AnnotationStore -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html#cfn-omics-annotationstore-name>
                     AnnotationStore -> Value Text
name :: (Value Prelude.Text),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html#cfn-omics-annotationstore-reference>
                     AnnotationStore -> Maybe ReferenceItemProperty
reference :: (Prelude.Maybe ReferenceItemProperty),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html#cfn-omics-annotationstore-sseconfig>
                     AnnotationStore -> Maybe SseConfigProperty
sseConfig :: (Prelude.Maybe SseConfigProperty),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html#cfn-omics-annotationstore-storeformat>
                     AnnotationStore -> Value Text
storeFormat :: (Value Prelude.Text),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html#cfn-omics-annotationstore-storeoptions>
                     AnnotationStore -> Maybe StoreOptionsProperty
storeOptions :: (Prelude.Maybe StoreOptionsProperty),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-annotationstore.html#cfn-omics-annotationstore-tags>
                     AnnotationStore -> Maybe (Map Text (Value Text))
tags :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text)))}
  deriving stock (AnnotationStore -> AnnotationStore -> Bool
(AnnotationStore -> AnnotationStore -> Bool)
-> (AnnotationStore -> AnnotationStore -> Bool)
-> Eq AnnotationStore
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: AnnotationStore -> AnnotationStore -> Bool
== :: AnnotationStore -> AnnotationStore -> Bool
$c/= :: AnnotationStore -> AnnotationStore -> Bool
/= :: AnnotationStore -> AnnotationStore -> Bool
Prelude.Eq, Int -> AnnotationStore -> ShowS
[AnnotationStore] -> ShowS
AnnotationStore -> String
(Int -> AnnotationStore -> ShowS)
-> (AnnotationStore -> String)
-> ([AnnotationStore] -> ShowS)
-> Show AnnotationStore
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> AnnotationStore -> ShowS
showsPrec :: Int -> AnnotationStore -> ShowS
$cshow :: AnnotationStore -> String
show :: AnnotationStore -> String
$cshowList :: [AnnotationStore] -> ShowS
showList :: [AnnotationStore] -> ShowS
Prelude.Show)
mkAnnotationStore ::
  Value Prelude.Text -> Value Prelude.Text -> AnnotationStore
mkAnnotationStore :: Value Text -> Value Text -> AnnotationStore
mkAnnotationStore Value Text
name Value Text
storeFormat
  = AnnotationStore
      {haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name, storeFormat :: Value Text
storeFormat = Value Text
storeFormat,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, reference :: Maybe ReferenceItemProperty
reference = Maybe ReferenceItemProperty
forall a. Maybe a
Prelude.Nothing,
       sseConfig :: Maybe SseConfigProperty
sseConfig = Maybe SseConfigProperty
forall a. Maybe a
Prelude.Nothing, storeOptions :: Maybe StoreOptionsProperty
storeOptions = Maybe StoreOptionsProperty
forall a. Maybe a
Prelude.Nothing,
       tags :: Maybe (Map Text (Value Text))
tags = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties AnnotationStore where
  toResourceProperties :: AnnotationStore -> ResourceProperties
toResourceProperties AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::Omics::AnnotationStore",
         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
"StoreFormat" 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
storeFormat]
                           ([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
"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 -> ReferenceItemProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Reference" (ReferenceItemProperty -> (Key, Value))
-> Maybe ReferenceItemProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ReferenceItemProperty
reference,
                               Key -> SseConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SseConfig" (SseConfigProperty -> (Key, Value))
-> Maybe SseConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SseConfigProperty
sseConfig,
                               Key -> StoreOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StoreOptions" (StoreOptionsProperty -> (Key, Value))
-> Maybe StoreOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe StoreOptionsProperty
storeOptions,
                               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
"Tags" (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))
tags]))}
instance JSON.ToJSON AnnotationStore where
  toJSON :: AnnotationStore -> Value
toJSON AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (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
"StoreFormat" 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
storeFormat]
              ([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
"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 -> ReferenceItemProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Reference" (ReferenceItemProperty -> (Key, Value))
-> Maybe ReferenceItemProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ReferenceItemProperty
reference,
                  Key -> SseConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SseConfig" (SseConfigProperty -> (Key, Value))
-> Maybe SseConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SseConfigProperty
sseConfig,
                  Key -> StoreOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StoreOptions" (StoreOptionsProperty -> (Key, Value))
-> Maybe StoreOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe StoreOptionsProperty
storeOptions,
                  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
"Tags" (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))
tags])))
instance Property "Description" AnnotationStore where
  type PropertyType "Description" AnnotationStore = Value Prelude.Text
  set :: PropertyType "Description" AnnotationStore
-> AnnotationStore -> AnnotationStore
set PropertyType "Description" AnnotationStore
newValue AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
    = AnnotationStore {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" AnnotationStore
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: ()
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Name" AnnotationStore where
  type PropertyType "Name" AnnotationStore = Value Prelude.Text
  set :: PropertyType "Name" AnnotationStore
-> AnnotationStore -> AnnotationStore
set PropertyType "Name" AnnotationStore
newValue AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
    = AnnotationStore {name :: Value Text
name = PropertyType "Name" AnnotationStore
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Reference" AnnotationStore where
  type PropertyType "Reference" AnnotationStore = ReferenceItemProperty
  set :: PropertyType "Reference" AnnotationStore
-> AnnotationStore -> AnnotationStore
set PropertyType "Reference" AnnotationStore
newValue AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
    = AnnotationStore {reference :: Maybe ReferenceItemProperty
reference = ReferenceItemProperty -> Maybe ReferenceItemProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Reference" AnnotationStore
ReferenceItemProperty
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "SseConfig" AnnotationStore where
  type PropertyType "SseConfig" AnnotationStore = SseConfigProperty
  set :: PropertyType "SseConfig" AnnotationStore
-> AnnotationStore -> AnnotationStore
set PropertyType "SseConfig" AnnotationStore
newValue AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
    = AnnotationStore {sseConfig :: Maybe SseConfigProperty
sseConfig = SseConfigProperty -> Maybe SseConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SseConfig" AnnotationStore
SseConfigProperty
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "StoreFormat" AnnotationStore where
  type PropertyType "StoreFormat" AnnotationStore = Value Prelude.Text
  set :: PropertyType "StoreFormat" AnnotationStore
-> AnnotationStore -> AnnotationStore
set PropertyType "StoreFormat" AnnotationStore
newValue AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
    = AnnotationStore {storeFormat :: Value Text
storeFormat = PropertyType "StoreFormat" AnnotationStore
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "StoreOptions" AnnotationStore where
  type PropertyType "StoreOptions" AnnotationStore = StoreOptionsProperty
  set :: PropertyType "StoreOptions" AnnotationStore
-> AnnotationStore -> AnnotationStore
set PropertyType "StoreOptions" AnnotationStore
newValue AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
    = AnnotationStore {storeOptions :: Maybe StoreOptionsProperty
storeOptions = StoreOptionsProperty -> Maybe StoreOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "StoreOptions" AnnotationStore
StoreOptionsProperty
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Tags" AnnotationStore where
  type PropertyType "Tags" AnnotationStore = Prelude.Map Prelude.Text (Value Prelude.Text)
  set :: PropertyType "Tags" AnnotationStore
-> AnnotationStore -> AnnotationStore
set PropertyType "Tags" AnnotationStore
newValue AnnotationStore {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: AnnotationStore -> ()
description :: AnnotationStore -> Maybe (Value Text)
name :: AnnotationStore -> Value Text
reference :: AnnotationStore -> Maybe ReferenceItemProperty
sseConfig :: AnnotationStore -> Maybe SseConfigProperty
storeFormat :: AnnotationStore -> Value Text
storeOptions :: AnnotationStore -> Maybe StoreOptionsProperty
tags :: AnnotationStore -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
tags :: Maybe (Map Text (Value Text))
..}
    = AnnotationStore {tags :: Maybe (Map Text (Value Text))
tags = 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 "Tags" AnnotationStore
newValue, Maybe (Value Text)
Maybe ReferenceItemProperty
Maybe SseConfigProperty
Maybe StoreOptionsProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
reference :: Maybe ReferenceItemProperty
sseConfig :: Maybe SseConfigProperty
storeFormat :: Value Text
storeOptions :: Maybe StoreOptionsProperty
..}