module Stratosphere.Bedrock.KnowledgeBase.StorageConfigurationProperty (
        module Exports, StorageConfigurationProperty(..),
        mkStorageConfigurationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.MongoDbAtlasConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.NeptuneAnalyticsConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.OpenSearchManagedClusterConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.OpenSearchServerlessConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.PineconeConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.RdsConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data StorageConfigurationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html>
    StorageConfigurationProperty {StorageConfigurationProperty -> ()
haddock_workaround_ :: (),
                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html#cfn-bedrock-knowledgebase-storageconfiguration-mongodbatlasconfiguration>
                                  StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
mongoDbAtlasConfiguration :: (Prelude.Maybe MongoDbAtlasConfigurationProperty),
                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html#cfn-bedrock-knowledgebase-storageconfiguration-neptuneanalyticsconfiguration>
                                  StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
neptuneAnalyticsConfiguration :: (Prelude.Maybe NeptuneAnalyticsConfigurationProperty),
                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html#cfn-bedrock-knowledgebase-storageconfiguration-opensearchmanagedclusterconfiguration>
                                  StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchManagedClusterConfiguration :: (Prelude.Maybe OpenSearchManagedClusterConfigurationProperty),
                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html#cfn-bedrock-knowledgebase-storageconfiguration-opensearchserverlessconfiguration>
                                  StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
opensearchServerlessConfiguration :: (Prelude.Maybe OpenSearchServerlessConfigurationProperty),
                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html#cfn-bedrock-knowledgebase-storageconfiguration-pineconeconfiguration>
                                  StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
pineconeConfiguration :: (Prelude.Maybe PineconeConfigurationProperty),
                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html#cfn-bedrock-knowledgebase-storageconfiguration-rdsconfiguration>
                                  StorageConfigurationProperty -> Maybe RdsConfigurationProperty
rdsConfiguration :: (Prelude.Maybe RdsConfigurationProperty),
                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html#cfn-bedrock-knowledgebase-storageconfiguration-type>
                                  StorageConfigurationProperty -> Value Text
type' :: (Value Prelude.Text)}
  deriving stock (StorageConfigurationProperty
-> StorageConfigurationProperty -> Bool
(StorageConfigurationProperty
 -> StorageConfigurationProperty -> Bool)
-> (StorageConfigurationProperty
    -> StorageConfigurationProperty -> Bool)
-> Eq StorageConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: StorageConfigurationProperty
-> StorageConfigurationProperty -> Bool
== :: StorageConfigurationProperty
-> StorageConfigurationProperty -> Bool
$c/= :: StorageConfigurationProperty
-> StorageConfigurationProperty -> Bool
/= :: StorageConfigurationProperty
-> StorageConfigurationProperty -> Bool
Prelude.Eq, Int -> StorageConfigurationProperty -> ShowS
[StorageConfigurationProperty] -> ShowS
StorageConfigurationProperty -> String
(Int -> StorageConfigurationProperty -> ShowS)
-> (StorageConfigurationProperty -> String)
-> ([StorageConfigurationProperty] -> ShowS)
-> Show StorageConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> StorageConfigurationProperty -> ShowS
showsPrec :: Int -> StorageConfigurationProperty -> ShowS
$cshow :: StorageConfigurationProperty -> String
show :: StorageConfigurationProperty -> String
$cshowList :: [StorageConfigurationProperty] -> ShowS
showList :: [StorageConfigurationProperty] -> ShowS
Prelude.Show)
mkStorageConfigurationProperty ::
  Value Prelude.Text -> StorageConfigurationProperty
mkStorageConfigurationProperty :: Value Text -> StorageConfigurationProperty
mkStorageConfigurationProperty Value Text
type'
  = StorageConfigurationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), type' :: Value Text
type' = Value Text
type',
       mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
mongoDbAtlasConfiguration = Maybe MongoDbAtlasConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
neptuneAnalyticsConfiguration = Maybe NeptuneAnalyticsConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchManagedClusterConfiguration = Maybe OpenSearchManagedClusterConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
opensearchServerlessConfiguration = Maybe OpenSearchServerlessConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       pineconeConfiguration :: Maybe PineconeConfigurationProperty
pineconeConfiguration = Maybe PineconeConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       rdsConfiguration :: Maybe RdsConfigurationProperty
rdsConfiguration = Maybe RdsConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties StorageConfigurationProperty where
  toResourceProperties :: StorageConfigurationProperty -> ResourceProperties
toResourceProperties StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::Bedrock::KnowledgeBase.StorageConfiguration",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         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
"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 -> MongoDbAtlasConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MongoDbAtlasConfiguration"
                                 (MongoDbAtlasConfigurationProperty -> (Key, Value))
-> Maybe MongoDbAtlasConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MongoDbAtlasConfigurationProperty
mongoDbAtlasConfiguration,
                               Key -> NeptuneAnalyticsConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NeptuneAnalyticsConfiguration"
                                 (NeptuneAnalyticsConfigurationProperty -> (Key, Value))
-> Maybe NeptuneAnalyticsConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NeptuneAnalyticsConfigurationProperty
neptuneAnalyticsConfiguration,
                               Key
-> OpenSearchManagedClusterConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"OpensearchManagedClusterConfiguration"
                                 (OpenSearchManagedClusterConfigurationProperty -> (Key, Value))
-> Maybe OpenSearchManagedClusterConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchManagedClusterConfiguration,
                               Key -> OpenSearchServerlessConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"OpensearchServerlessConfiguration"
                                 (OpenSearchServerlessConfigurationProperty -> (Key, Value))
-> Maybe OpenSearchServerlessConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe OpenSearchServerlessConfigurationProperty
opensearchServerlessConfiguration,
                               Key -> PineconeConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PineconeConfiguration"
                                 (PineconeConfigurationProperty -> (Key, Value))
-> Maybe PineconeConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe PineconeConfigurationProperty
pineconeConfiguration,
                               Key -> RdsConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RdsConfiguration" (RdsConfigurationProperty -> (Key, Value))
-> Maybe RdsConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RdsConfigurationProperty
rdsConfiguration]))}
instance JSON.ToJSON StorageConfigurationProperty where
  toJSON :: StorageConfigurationProperty -> Value
toJSON StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
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
"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 -> MongoDbAtlasConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MongoDbAtlasConfiguration"
                    (MongoDbAtlasConfigurationProperty -> (Key, Value))
-> Maybe MongoDbAtlasConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MongoDbAtlasConfigurationProperty
mongoDbAtlasConfiguration,
                  Key -> NeptuneAnalyticsConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NeptuneAnalyticsConfiguration"
                    (NeptuneAnalyticsConfigurationProperty -> (Key, Value))
-> Maybe NeptuneAnalyticsConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NeptuneAnalyticsConfigurationProperty
neptuneAnalyticsConfiguration,
                  Key
-> OpenSearchManagedClusterConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"OpensearchManagedClusterConfiguration"
                    (OpenSearchManagedClusterConfigurationProperty -> (Key, Value))
-> Maybe OpenSearchManagedClusterConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchManagedClusterConfiguration,
                  Key -> OpenSearchServerlessConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"OpensearchServerlessConfiguration"
                    (OpenSearchServerlessConfigurationProperty -> (Key, Value))
-> Maybe OpenSearchServerlessConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe OpenSearchServerlessConfigurationProperty
opensearchServerlessConfiguration,
                  Key -> PineconeConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PineconeConfiguration"
                    (PineconeConfigurationProperty -> (Key, Value))
-> Maybe PineconeConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe PineconeConfigurationProperty
pineconeConfiguration,
                  Key -> RdsConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RdsConfiguration" (RdsConfigurationProperty -> (Key, Value))
-> Maybe RdsConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RdsConfigurationProperty
rdsConfiguration])))
instance Property "MongoDbAtlasConfiguration" StorageConfigurationProperty where
  type PropertyType "MongoDbAtlasConfiguration" StorageConfigurationProperty = MongoDbAtlasConfigurationProperty
  set :: PropertyType
  "MongoDbAtlasConfiguration" StorageConfigurationProperty
-> StorageConfigurationProperty -> StorageConfigurationProperty
set PropertyType
  "MongoDbAtlasConfiguration" StorageConfigurationProperty
newValue StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
    = StorageConfigurationProperty
        {mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
mongoDbAtlasConfiguration = MongoDbAtlasConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "MongoDbAtlasConfiguration" StorageConfigurationProperty
MongoDbAtlasConfigurationProperty
newValue, Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
instance Property "NeptuneAnalyticsConfiguration" StorageConfigurationProperty where
  type PropertyType "NeptuneAnalyticsConfiguration" StorageConfigurationProperty = NeptuneAnalyticsConfigurationProperty
  set :: PropertyType
  "NeptuneAnalyticsConfiguration" StorageConfigurationProperty
-> StorageConfigurationProperty -> StorageConfigurationProperty
set PropertyType
  "NeptuneAnalyticsConfiguration" StorageConfigurationProperty
newValue StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
    = StorageConfigurationProperty
        {neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
neptuneAnalyticsConfiguration = NeptuneAnalyticsConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "NeptuneAnalyticsConfiguration" StorageConfigurationProperty
NeptuneAnalyticsConfigurationProperty
newValue, Maybe MongoDbAtlasConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
instance Property "OpensearchManagedClusterConfiguration" StorageConfigurationProperty where
  type PropertyType "OpensearchManagedClusterConfiguration" StorageConfigurationProperty = OpenSearchManagedClusterConfigurationProperty
  set :: PropertyType
  "OpensearchManagedClusterConfiguration"
  StorageConfigurationProperty
-> StorageConfigurationProperty -> StorageConfigurationProperty
set PropertyType
  "OpensearchManagedClusterConfiguration"
  StorageConfigurationProperty
newValue StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
    = StorageConfigurationProperty
        {opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchManagedClusterConfiguration = OpenSearchManagedClusterConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "OpensearchManagedClusterConfiguration"
  StorageConfigurationProperty
OpenSearchManagedClusterConfigurationProperty
newValue, Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
instance Property "OpensearchServerlessConfiguration" StorageConfigurationProperty where
  type PropertyType "OpensearchServerlessConfiguration" StorageConfigurationProperty = OpenSearchServerlessConfigurationProperty
  set :: PropertyType
  "OpensearchServerlessConfiguration" StorageConfigurationProperty
-> StorageConfigurationProperty -> StorageConfigurationProperty
set PropertyType
  "OpensearchServerlessConfiguration" StorageConfigurationProperty
newValue StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
    = StorageConfigurationProperty
        {opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
opensearchServerlessConfiguration = OpenSearchServerlessConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "OpensearchServerlessConfiguration" StorageConfigurationProperty
OpenSearchServerlessConfigurationProperty
newValue, Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
instance Property "PineconeConfiguration" StorageConfigurationProperty where
  type PropertyType "PineconeConfiguration" StorageConfigurationProperty = PineconeConfigurationProperty
  set :: PropertyType "PineconeConfiguration" StorageConfigurationProperty
-> StorageConfigurationProperty -> StorageConfigurationProperty
set PropertyType "PineconeConfiguration" StorageConfigurationProperty
newValue StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
    = StorageConfigurationProperty
        {pineconeConfiguration :: Maybe PineconeConfigurationProperty
pineconeConfiguration = PineconeConfigurationProperty
-> Maybe PineconeConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PineconeConfiguration" StorageConfigurationProperty
PineconeConfigurationProperty
newValue, Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
instance Property "RdsConfiguration" StorageConfigurationProperty where
  type PropertyType "RdsConfiguration" StorageConfigurationProperty = RdsConfigurationProperty
  set :: PropertyType "RdsConfiguration" StorageConfigurationProperty
-> StorageConfigurationProperty -> StorageConfigurationProperty
set PropertyType "RdsConfiguration" StorageConfigurationProperty
newValue StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
    = StorageConfigurationProperty
        {rdsConfiguration :: Maybe RdsConfigurationProperty
rdsConfiguration = RdsConfigurationProperty -> Maybe RdsConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RdsConfiguration" StorageConfigurationProperty
RdsConfigurationProperty
newValue, Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
type' :: Value Text
..}
instance Property "Type" StorageConfigurationProperty where
  type PropertyType "Type" StorageConfigurationProperty = Value Prelude.Text
  set :: PropertyType "Type" StorageConfigurationProperty
-> StorageConfigurationProperty -> StorageConfigurationProperty
set PropertyType "Type" StorageConfigurationProperty
newValue StorageConfigurationProperty {Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
Value Text
haddock_workaround_ :: StorageConfigurationProperty -> ()
mongoDbAtlasConfiguration :: StorageConfigurationProperty
-> Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: StorageConfigurationProperty
-> Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: StorageConfigurationProperty
-> Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: StorageConfigurationProperty -> Maybe PineconeConfigurationProperty
rdsConfiguration :: StorageConfigurationProperty -> Maybe RdsConfigurationProperty
type' :: StorageConfigurationProperty -> Value Text
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
type' :: Value Text
..}
    = StorageConfigurationProperty {type' :: Value Text
type' = PropertyType "Type" StorageConfigurationProperty
Value Text
newValue, Maybe MongoDbAtlasConfigurationProperty
Maybe NeptuneAnalyticsConfigurationProperty
Maybe OpenSearchManagedClusterConfigurationProperty
Maybe OpenSearchServerlessConfigurationProperty
Maybe PineconeConfigurationProperty
Maybe RdsConfigurationProperty
()
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
haddock_workaround_ :: ()
mongoDbAtlasConfiguration :: Maybe MongoDbAtlasConfigurationProperty
neptuneAnalyticsConfiguration :: Maybe NeptuneAnalyticsConfigurationProperty
opensearchManagedClusterConfiguration :: Maybe OpenSearchManagedClusterConfigurationProperty
opensearchServerlessConfiguration :: Maybe OpenSearchServerlessConfigurationProperty
pineconeConfiguration :: Maybe PineconeConfigurationProperty
rdsConfiguration :: Maybe RdsConfigurationProperty
..}