module Stratosphere.Bedrock.KnowledgeBase.KnowledgeBaseConfigurationProperty (
        module Exports, KnowledgeBaseConfigurationProperty(..),
        mkKnowledgeBaseConfigurationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.KendraKnowledgeBaseConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.SqlKnowledgeBaseConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Bedrock.KnowledgeBase.VectorKnowledgeBaseConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data KnowledgeBaseConfigurationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebaseconfiguration.html>
    KnowledgeBaseConfigurationProperty {KnowledgeBaseConfigurationProperty -> ()
haddock_workaround_ :: (),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebaseconfiguration.html#cfn-bedrock-knowledgebase-knowledgebaseconfiguration-kendraknowledgebaseconfiguration>
                                        KnowledgeBaseConfigurationProperty
-> Maybe KendraKnowledgeBaseConfigurationProperty
kendraKnowledgeBaseConfiguration :: (Prelude.Maybe KendraKnowledgeBaseConfigurationProperty),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebaseconfiguration.html#cfn-bedrock-knowledgebase-knowledgebaseconfiguration-sqlknowledgebaseconfiguration>
                                        KnowledgeBaseConfigurationProperty
-> Maybe SqlKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: (Prelude.Maybe SqlKnowledgeBaseConfigurationProperty),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebaseconfiguration.html#cfn-bedrock-knowledgebase-knowledgebaseconfiguration-type>
                                        KnowledgeBaseConfigurationProperty -> Value Text
type' :: (Value Prelude.Text),
                                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebaseconfiguration.html#cfn-bedrock-knowledgebase-knowledgebaseconfiguration-vectorknowledgebaseconfiguration>
                                        KnowledgeBaseConfigurationProperty
-> Maybe VectorKnowledgeBaseConfigurationProperty
vectorKnowledgeBaseConfiguration :: (Prelude.Maybe VectorKnowledgeBaseConfigurationProperty)}
  deriving stock (KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty -> Bool
(KnowledgeBaseConfigurationProperty
 -> KnowledgeBaseConfigurationProperty -> Bool)
-> (KnowledgeBaseConfigurationProperty
    -> KnowledgeBaseConfigurationProperty -> Bool)
-> Eq KnowledgeBaseConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty -> Bool
== :: KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty -> Bool
$c/= :: KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty -> Bool
/= :: KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty -> Bool
Prelude.Eq, Int -> KnowledgeBaseConfigurationProperty -> ShowS
[KnowledgeBaseConfigurationProperty] -> ShowS
KnowledgeBaseConfigurationProperty -> String
(Int -> KnowledgeBaseConfigurationProperty -> ShowS)
-> (KnowledgeBaseConfigurationProperty -> String)
-> ([KnowledgeBaseConfigurationProperty] -> ShowS)
-> Show KnowledgeBaseConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> KnowledgeBaseConfigurationProperty -> ShowS
showsPrec :: Int -> KnowledgeBaseConfigurationProperty -> ShowS
$cshow :: KnowledgeBaseConfigurationProperty -> String
show :: KnowledgeBaseConfigurationProperty -> String
$cshowList :: [KnowledgeBaseConfigurationProperty] -> ShowS
showList :: [KnowledgeBaseConfigurationProperty] -> ShowS
Prelude.Show)
mkKnowledgeBaseConfigurationProperty ::
  Value Prelude.Text -> KnowledgeBaseConfigurationProperty
mkKnowledgeBaseConfigurationProperty :: Value Text -> KnowledgeBaseConfigurationProperty
mkKnowledgeBaseConfigurationProperty Value Text
type'
  = KnowledgeBaseConfigurationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), type' :: Value Text
type' = Value Text
type',
       kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
kendraKnowledgeBaseConfiguration = Maybe KendraKnowledgeBaseConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration = Maybe SqlKnowledgeBaseConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
vectorKnowledgeBaseConfiguration = Maybe VectorKnowledgeBaseConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties KnowledgeBaseConfigurationProperty where
  toResourceProperties :: KnowledgeBaseConfigurationProperty -> ResourceProperties
toResourceProperties KnowledgeBaseConfigurationProperty {Maybe KendraKnowledgeBaseConfigurationProperty
Maybe SqlKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: KnowledgeBaseConfigurationProperty -> ()
kendraKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe SqlKnowledgeBaseConfigurationProperty
type' :: KnowledgeBaseConfigurationProperty -> Value Text
vectorKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::Bedrock::KnowledgeBase.KnowledgeBaseConfiguration",
         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 -> KendraKnowledgeBaseConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"KendraKnowledgeBaseConfiguration"
                                 (KendraKnowledgeBaseConfigurationProperty -> (Key, Value))
-> Maybe KendraKnowledgeBaseConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe KendraKnowledgeBaseConfigurationProperty
kendraKnowledgeBaseConfiguration,
                               Key -> SqlKnowledgeBaseConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SqlKnowledgeBaseConfiguration"
                                 (SqlKnowledgeBaseConfigurationProperty -> (Key, Value))
-> Maybe SqlKnowledgeBaseConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SqlKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration,
                               Key -> VectorKnowledgeBaseConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VectorKnowledgeBaseConfiguration"
                                 (VectorKnowledgeBaseConfigurationProperty -> (Key, Value))
-> Maybe VectorKnowledgeBaseConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VectorKnowledgeBaseConfigurationProperty
vectorKnowledgeBaseConfiguration]))}
instance JSON.ToJSON KnowledgeBaseConfigurationProperty where
  toJSON :: KnowledgeBaseConfigurationProperty -> Value
toJSON KnowledgeBaseConfigurationProperty {Maybe KendraKnowledgeBaseConfigurationProperty
Maybe SqlKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: KnowledgeBaseConfigurationProperty -> ()
kendraKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe SqlKnowledgeBaseConfigurationProperty
type' :: KnowledgeBaseConfigurationProperty -> Value Text
vectorKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
    = [(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 -> KendraKnowledgeBaseConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"KendraKnowledgeBaseConfiguration"
                    (KendraKnowledgeBaseConfigurationProperty -> (Key, Value))
-> Maybe KendraKnowledgeBaseConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe KendraKnowledgeBaseConfigurationProperty
kendraKnowledgeBaseConfiguration,
                  Key -> SqlKnowledgeBaseConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SqlKnowledgeBaseConfiguration"
                    (SqlKnowledgeBaseConfigurationProperty -> (Key, Value))
-> Maybe SqlKnowledgeBaseConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SqlKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration,
                  Key -> VectorKnowledgeBaseConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VectorKnowledgeBaseConfiguration"
                    (VectorKnowledgeBaseConfigurationProperty -> (Key, Value))
-> Maybe VectorKnowledgeBaseConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VectorKnowledgeBaseConfigurationProperty
vectorKnowledgeBaseConfiguration])))
instance Property "KendraKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty where
  type PropertyType "KendraKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty = KendraKnowledgeBaseConfigurationProperty
  set :: PropertyType
  "KendraKnowledgeBaseConfiguration"
  KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty
set PropertyType
  "KendraKnowledgeBaseConfiguration"
  KnowledgeBaseConfigurationProperty
newValue KnowledgeBaseConfigurationProperty {Maybe KendraKnowledgeBaseConfigurationProperty
Maybe SqlKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: KnowledgeBaseConfigurationProperty -> ()
kendraKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe SqlKnowledgeBaseConfigurationProperty
type' :: KnowledgeBaseConfigurationProperty -> Value Text
vectorKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
    = KnowledgeBaseConfigurationProperty
        {kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
kendraKnowledgeBaseConfiguration = KendraKnowledgeBaseConfigurationProperty
-> Maybe KendraKnowledgeBaseConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "KendraKnowledgeBaseConfiguration"
  KnowledgeBaseConfigurationProperty
KendraKnowledgeBaseConfigurationProperty
newValue, Maybe SqlKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
instance Property "SqlKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty where
  type PropertyType "SqlKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty = SqlKnowledgeBaseConfigurationProperty
  set :: PropertyType
  "SqlKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty
set PropertyType
  "SqlKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty
newValue KnowledgeBaseConfigurationProperty {Maybe KendraKnowledgeBaseConfigurationProperty
Maybe SqlKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: KnowledgeBaseConfigurationProperty -> ()
kendraKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe SqlKnowledgeBaseConfigurationProperty
type' :: KnowledgeBaseConfigurationProperty -> Value Text
vectorKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
    = KnowledgeBaseConfigurationProperty
        {sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration = SqlKnowledgeBaseConfigurationProperty
-> Maybe SqlKnowledgeBaseConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "SqlKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty
SqlKnowledgeBaseConfigurationProperty
newValue, Maybe KendraKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
instance Property "Type" KnowledgeBaseConfigurationProperty where
  type PropertyType "Type" KnowledgeBaseConfigurationProperty = Value Prelude.Text
  set :: PropertyType "Type" KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty
set PropertyType "Type" KnowledgeBaseConfigurationProperty
newValue KnowledgeBaseConfigurationProperty {Maybe KendraKnowledgeBaseConfigurationProperty
Maybe SqlKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: KnowledgeBaseConfigurationProperty -> ()
kendraKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe SqlKnowledgeBaseConfigurationProperty
type' :: KnowledgeBaseConfigurationProperty -> Value Text
vectorKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
    = KnowledgeBaseConfigurationProperty {type' :: Value Text
type' = PropertyType "Type" KnowledgeBaseConfigurationProperty
Value Text
newValue, Maybe KendraKnowledgeBaseConfigurationProperty
Maybe SqlKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
instance Property "VectorKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty where
  type PropertyType "VectorKnowledgeBaseConfiguration" KnowledgeBaseConfigurationProperty = VectorKnowledgeBaseConfigurationProperty
  set :: PropertyType
  "VectorKnowledgeBaseConfiguration"
  KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty
-> KnowledgeBaseConfigurationProperty
set PropertyType
  "VectorKnowledgeBaseConfiguration"
  KnowledgeBaseConfigurationProperty
newValue KnowledgeBaseConfigurationProperty {Maybe KendraKnowledgeBaseConfigurationProperty
Maybe SqlKnowledgeBaseConfigurationProperty
Maybe VectorKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: KnowledgeBaseConfigurationProperty -> ()
kendraKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe SqlKnowledgeBaseConfigurationProperty
type' :: KnowledgeBaseConfigurationProperty -> Value Text
vectorKnowledgeBaseConfiguration :: KnowledgeBaseConfigurationProperty
-> Maybe VectorKnowledgeBaseConfigurationProperty
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
..}
    = KnowledgeBaseConfigurationProperty
        {vectorKnowledgeBaseConfiguration :: Maybe VectorKnowledgeBaseConfigurationProperty
vectorKnowledgeBaseConfiguration = VectorKnowledgeBaseConfigurationProperty
-> Maybe VectorKnowledgeBaseConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "VectorKnowledgeBaseConfiguration"
  KnowledgeBaseConfigurationProperty
VectorKnowledgeBaseConfigurationProperty
newValue, Maybe KendraKnowledgeBaseConfigurationProperty
Maybe SqlKnowledgeBaseConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
kendraKnowledgeBaseConfiguration :: Maybe KendraKnowledgeBaseConfigurationProperty
sqlKnowledgeBaseConfiguration :: Maybe SqlKnowledgeBaseConfigurationProperty
type' :: Value Text
..}