module Stratosphere.Kendra.DataSource.SharePointConfigurationProperty (
        module Exports, SharePointConfigurationProperty(..),
        mkSharePointConfigurationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Kendra.DataSource.DataSourceToIndexFieldMappingProperty as Exports
import {-# SOURCE #-} Stratosphere.Kendra.DataSource.DataSourceVpcConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Kendra.DataSource.S3PathProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SharePointConfigurationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html>
    SharePointConfigurationProperty {SharePointConfigurationProperty -> ()
haddock_workaround_ :: (),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-crawlattachments>
                                     SharePointConfigurationProperty -> Maybe (Value Bool)
crawlAttachments :: (Prelude.Maybe (Value Prelude.Bool)),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-disablelocalgroups>
                                     SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: (Prelude.Maybe (Value Prelude.Bool)),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-documenttitlefieldname>
                                     SharePointConfigurationProperty -> Maybe (Value Text)
documentTitleFieldName :: (Prelude.Maybe (Value Prelude.Text)),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-exclusionpatterns>
                                     SharePointConfigurationProperty -> Maybe (ValueList Text)
exclusionPatterns :: (Prelude.Maybe (ValueList Prelude.Text)),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-fieldmappings>
                                     SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
fieldMappings :: (Prelude.Maybe [DataSourceToIndexFieldMappingProperty]),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-inclusionpatterns>
                                     SharePointConfigurationProperty -> Maybe (ValueList Text)
inclusionPatterns :: (Prelude.Maybe (ValueList Prelude.Text)),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-secretarn>
                                     SharePointConfigurationProperty -> Value Text
secretArn :: (Value Prelude.Text),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-sharepointversion>
                                     SharePointConfigurationProperty -> Value Text
sharePointVersion :: (Value Prelude.Text),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-sslcertificates3path>
                                     SharePointConfigurationProperty -> Maybe S3PathProperty
sslCertificateS3Path :: (Prelude.Maybe S3PathProperty),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-urls>
                                     SharePointConfigurationProperty -> ValueList Text
urls :: (ValueList Prelude.Text),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-usechangelog>
                                     SharePointConfigurationProperty -> Maybe (Value Bool)
useChangeLog :: (Prelude.Maybe (Value Prelude.Bool)),
                                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-vpcconfiguration>
                                     SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
vpcConfiguration :: (Prelude.Maybe DataSourceVpcConfigurationProperty)}
  deriving stock (SharePointConfigurationProperty
-> SharePointConfigurationProperty -> Bool
(SharePointConfigurationProperty
 -> SharePointConfigurationProperty -> Bool)
-> (SharePointConfigurationProperty
    -> SharePointConfigurationProperty -> Bool)
-> Eq SharePointConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SharePointConfigurationProperty
-> SharePointConfigurationProperty -> Bool
== :: SharePointConfigurationProperty
-> SharePointConfigurationProperty -> Bool
$c/= :: SharePointConfigurationProperty
-> SharePointConfigurationProperty -> Bool
/= :: SharePointConfigurationProperty
-> SharePointConfigurationProperty -> Bool
Prelude.Eq, Int -> SharePointConfigurationProperty -> ShowS
[SharePointConfigurationProperty] -> ShowS
SharePointConfigurationProperty -> String
(Int -> SharePointConfigurationProperty -> ShowS)
-> (SharePointConfigurationProperty -> String)
-> ([SharePointConfigurationProperty] -> ShowS)
-> Show SharePointConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SharePointConfigurationProperty -> ShowS
showsPrec :: Int -> SharePointConfigurationProperty -> ShowS
$cshow :: SharePointConfigurationProperty -> String
show :: SharePointConfigurationProperty -> String
$cshowList :: [SharePointConfigurationProperty] -> ShowS
showList :: [SharePointConfigurationProperty] -> ShowS
Prelude.Show)
mkSharePointConfigurationProperty ::
  Value Prelude.Text
  -> Value Prelude.Text
     -> ValueList Prelude.Text -> SharePointConfigurationProperty
mkSharePointConfigurationProperty :: Value Text
-> Value Text -> ValueList Text -> SharePointConfigurationProperty
mkSharePointConfigurationProperty Value Text
secretArn Value Text
sharePointVersion ValueList Text
urls
  = SharePointConfigurationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), secretArn :: Value Text
secretArn = Value Text
secretArn,
       sharePointVersion :: Value Text
sharePointVersion = Value Text
sharePointVersion, urls :: ValueList Text
urls = ValueList Text
urls,
       crawlAttachments :: Maybe (Value Bool)
crawlAttachments = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       disableLocalGroups :: Maybe (Value Bool)
disableLocalGroups = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       documentTitleFieldName :: Maybe (Value Text)
documentTitleFieldName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       exclusionPatterns :: Maybe (ValueList Text)
exclusionPatterns = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
       fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
fieldMappings = Maybe [DataSourceToIndexFieldMappingProperty]
forall a. Maybe a
Prelude.Nothing,
       inclusionPatterns :: Maybe (ValueList Text)
inclusionPatterns = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
       sslCertificateS3Path :: Maybe S3PathProperty
sslCertificateS3Path = Maybe S3PathProperty
forall a. Maybe a
Prelude.Nothing,
       useChangeLog :: Maybe (Value Bool)
useChangeLog = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing, vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
vpcConfiguration = Maybe DataSourceVpcConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SharePointConfigurationProperty where
  toResourceProperties :: SharePointConfigurationProperty -> ResourceProperties
toResourceProperties SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::Kendra::DataSource.SharePointConfiguration",
         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
"SecretArn" 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
secretArn,
                            Key
"SharePointVersion" 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
sharePointVersion, Key
"Urls" Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ValueList Text
urls]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CrawlAttachments" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
crawlAttachments,
                               Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisableLocalGroups" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
disableLocalGroups,
                               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
"DocumentTitleFieldName"
                                 (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)
documentTitleFieldName,
                               Key -> ValueList 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
"ExclusionPatterns" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
exclusionPatterns,
                               Key -> [DataSourceToIndexFieldMappingProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FieldMappings" ([DataSourceToIndexFieldMappingProperty] -> (Key, Value))
-> Maybe [DataSourceToIndexFieldMappingProperty]
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataSourceToIndexFieldMappingProperty]
fieldMappings,
                               Key -> ValueList 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
"InclusionPatterns" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
inclusionPatterns,
                               Key -> S3PathProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SslCertificateS3Path" (S3PathProperty -> (Key, Value))
-> Maybe S3PathProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe S3PathProperty
sslCertificateS3Path,
                               Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UseChangeLog" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
useChangeLog,
                               Key -> DataSourceVpcConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VpcConfiguration" (DataSourceVpcConfigurationProperty -> (Key, Value))
-> Maybe DataSourceVpcConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DataSourceVpcConfigurationProperty
vpcConfiguration]))}
instance JSON.ToJSON SharePointConfigurationProperty where
  toJSON :: SharePointConfigurationProperty -> Value
toJSON SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = [(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
"SecretArn" 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
secretArn,
               Key
"SharePointVersion" 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
sharePointVersion, Key
"Urls" Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ValueList Text
urls]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CrawlAttachments" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
crawlAttachments,
                  Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisableLocalGroups" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
disableLocalGroups,
                  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
"DocumentTitleFieldName"
                    (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)
documentTitleFieldName,
                  Key -> ValueList 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
"ExclusionPatterns" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
exclusionPatterns,
                  Key -> [DataSourceToIndexFieldMappingProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FieldMappings" ([DataSourceToIndexFieldMappingProperty] -> (Key, Value))
-> Maybe [DataSourceToIndexFieldMappingProperty]
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataSourceToIndexFieldMappingProperty]
fieldMappings,
                  Key -> ValueList 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
"InclusionPatterns" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
inclusionPatterns,
                  Key -> S3PathProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SslCertificateS3Path" (S3PathProperty -> (Key, Value))
-> Maybe S3PathProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe S3PathProperty
sslCertificateS3Path,
                  Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UseChangeLog" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
useChangeLog,
                  Key -> DataSourceVpcConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VpcConfiguration" (DataSourceVpcConfigurationProperty -> (Key, Value))
-> Maybe DataSourceVpcConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DataSourceVpcConfigurationProperty
vpcConfiguration])))
instance Property "CrawlAttachments" SharePointConfigurationProperty where
  type PropertyType "CrawlAttachments" SharePointConfigurationProperty = Value Prelude.Bool
  set :: PropertyType "CrawlAttachments" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "CrawlAttachments" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {crawlAttachments :: Maybe (Value Bool)
crawlAttachments = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CrawlAttachments" SharePointConfigurationProperty
Value Bool
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "DisableLocalGroups" SharePointConfigurationProperty where
  type PropertyType "DisableLocalGroups" SharePointConfigurationProperty = Value Prelude.Bool
  set :: PropertyType "DisableLocalGroups" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "DisableLocalGroups" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {disableLocalGroups :: Maybe (Value Bool)
disableLocalGroups = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DisableLocalGroups" SharePointConfigurationProperty
Value Bool
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "DocumentTitleFieldName" SharePointConfigurationProperty where
  type PropertyType "DocumentTitleFieldName" SharePointConfigurationProperty = Value Prelude.Text
  set :: PropertyType
  "DocumentTitleFieldName" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType
  "DocumentTitleFieldName" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {documentTitleFieldName :: Maybe (Value Text)
documentTitleFieldName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "DocumentTitleFieldName" SharePointConfigurationProperty
Value Text
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "ExclusionPatterns" SharePointConfigurationProperty where
  type PropertyType "ExclusionPatterns" SharePointConfigurationProperty = ValueList Prelude.Text
  set :: PropertyType "ExclusionPatterns" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "ExclusionPatterns" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {exclusionPatterns :: Maybe (ValueList Text)
exclusionPatterns = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExclusionPatterns" SharePointConfigurationProperty
ValueList Text
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "FieldMappings" SharePointConfigurationProperty where
  type PropertyType "FieldMappings" SharePointConfigurationProperty = [DataSourceToIndexFieldMappingProperty]
  set :: PropertyType "FieldMappings" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "FieldMappings" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
fieldMappings = [DataSourceToIndexFieldMappingProperty]
-> Maybe [DataSourceToIndexFieldMappingProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [DataSourceToIndexFieldMappingProperty]
PropertyType "FieldMappings" SharePointConfigurationProperty
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "InclusionPatterns" SharePointConfigurationProperty where
  type PropertyType "InclusionPatterns" SharePointConfigurationProperty = ValueList Prelude.Text
  set :: PropertyType "InclusionPatterns" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "InclusionPatterns" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {inclusionPatterns :: Maybe (ValueList Text)
inclusionPatterns = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InclusionPatterns" SharePointConfigurationProperty
ValueList Text
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "SecretArn" SharePointConfigurationProperty where
  type PropertyType "SecretArn" SharePointConfigurationProperty = Value Prelude.Text
  set :: PropertyType "SecretArn" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "SecretArn" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty {secretArn :: Value Text
secretArn = PropertyType "SecretArn" SharePointConfigurationProperty
Value Text
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "SharePointVersion" SharePointConfigurationProperty where
  type PropertyType "SharePointVersion" SharePointConfigurationProperty = Value Prelude.Text
  set :: PropertyType "SharePointVersion" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "SharePointVersion" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {sharePointVersion :: Value Text
sharePointVersion = PropertyType "SharePointVersion" SharePointConfigurationProperty
Value Text
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "SslCertificateS3Path" SharePointConfigurationProperty where
  type PropertyType "SslCertificateS3Path" SharePointConfigurationProperty = S3PathProperty
  set :: PropertyType "SslCertificateS3Path" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "SslCertificateS3Path" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {sslCertificateS3Path :: Maybe S3PathProperty
sslCertificateS3Path = S3PathProperty -> Maybe S3PathProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SslCertificateS3Path" SharePointConfigurationProperty
S3PathProperty
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "Urls" SharePointConfigurationProperty where
  type PropertyType "Urls" SharePointConfigurationProperty = ValueList Prelude.Text
  set :: PropertyType "Urls" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "Urls" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty {urls :: ValueList Text
urls = PropertyType "Urls" SharePointConfigurationProperty
ValueList Text
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "UseChangeLog" SharePointConfigurationProperty where
  type PropertyType "UseChangeLog" SharePointConfigurationProperty = Value Prelude.Bool
  set :: PropertyType "UseChangeLog" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "UseChangeLog" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {useChangeLog :: Maybe (Value Bool)
useChangeLog = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UseChangeLog" SharePointConfigurationProperty
Value Bool
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
instance Property "VpcConfiguration" SharePointConfigurationProperty where
  type PropertyType "VpcConfiguration" SharePointConfigurationProperty = DataSourceVpcConfigurationProperty
  set :: PropertyType "VpcConfiguration" SharePointConfigurationProperty
-> SharePointConfigurationProperty
-> SharePointConfigurationProperty
set PropertyType "VpcConfiguration" SharePointConfigurationProperty
newValue SharePointConfigurationProperty {Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe DataSourceVpcConfigurationProperty
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: SharePointConfigurationProperty -> ()
crawlAttachments :: SharePointConfigurationProperty -> Maybe (Value Bool)
disableLocalGroups :: SharePointConfigurationProperty -> Maybe (Value Bool)
documentTitleFieldName :: SharePointConfigurationProperty -> Maybe (Value Text)
exclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
fieldMappings :: SharePointConfigurationProperty
-> Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: SharePointConfigurationProperty -> Maybe (ValueList Text)
secretArn :: SharePointConfigurationProperty -> Value Text
sharePointVersion :: SharePointConfigurationProperty -> Value Text
sslCertificateS3Path :: SharePointConfigurationProperty -> Maybe S3PathProperty
urls :: SharePointConfigurationProperty -> ValueList Text
useChangeLog :: SharePointConfigurationProperty -> Maybe (Value Bool)
vpcConfiguration :: SharePointConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
..}
    = SharePointConfigurationProperty
        {vpcConfiguration :: Maybe DataSourceVpcConfigurationProperty
vpcConfiguration = DataSourceVpcConfigurationProperty
-> Maybe DataSourceVpcConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "VpcConfiguration" SharePointConfigurationProperty
DataSourceVpcConfigurationProperty
newValue, Maybe [DataSourceToIndexFieldMappingProperty]
Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
Maybe S3PathProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
haddock_workaround_ :: ()
crawlAttachments :: Maybe (Value Bool)
disableLocalGroups :: Maybe (Value Bool)
documentTitleFieldName :: Maybe (Value Text)
exclusionPatterns :: Maybe (ValueList Text)
fieldMappings :: Maybe [DataSourceToIndexFieldMappingProperty]
inclusionPatterns :: Maybe (ValueList Text)
secretArn :: Value Text
sharePointVersion :: Value Text
sslCertificateS3Path :: Maybe S3PathProperty
urls :: ValueList Text
useChangeLog :: Maybe (Value Bool)
..}