module Stratosphere.Kendra.DataSource.WebCrawlerConfigurationProperty (
module Exports, WebCrawlerConfigurationProperty(..),
mkWebCrawlerConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Kendra.DataSource.ProxyConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Kendra.DataSource.WebCrawlerAuthenticationConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Kendra.DataSource.WebCrawlerUrlsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data WebCrawlerConfigurationProperty
=
WebCrawlerConfigurationProperty {WebCrawlerConfigurationProperty -> ()
haddock_workaround_ :: (),
WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
authenticationConfiguration :: (Prelude.Maybe WebCrawlerAuthenticationConfigurationProperty),
WebCrawlerConfigurationProperty -> Maybe (Value Integer)
crawlDepth :: (Prelude.Maybe (Value Prelude.Integer)),
WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxContentSizePerPageInMegaBytes :: (Prelude.Maybe (Value Prelude.Double)),
WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxLinksPerPage :: (Prelude.Maybe (Value Prelude.Integer)),
WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: (Prelude.Maybe (Value Prelude.Integer)),
WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
proxyConfiguration :: (Prelude.Maybe ProxyConfigurationProperty),
WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlExclusionPatterns :: (Prelude.Maybe (ValueList Prelude.Text)),
WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: (Prelude.Maybe (ValueList Prelude.Text)),
WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
urls :: WebCrawlerUrlsProperty}
deriving stock (WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty -> Bool
(WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty -> Bool)
-> (WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty -> Bool)
-> Eq WebCrawlerConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty -> Bool
== :: WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty -> Bool
$c/= :: WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty -> Bool
/= :: WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty -> Bool
Prelude.Eq, Int -> WebCrawlerConfigurationProperty -> ShowS
[WebCrawlerConfigurationProperty] -> ShowS
WebCrawlerConfigurationProperty -> String
(Int -> WebCrawlerConfigurationProperty -> ShowS)
-> (WebCrawlerConfigurationProperty -> String)
-> ([WebCrawlerConfigurationProperty] -> ShowS)
-> Show WebCrawlerConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> WebCrawlerConfigurationProperty -> ShowS
showsPrec :: Int -> WebCrawlerConfigurationProperty -> ShowS
$cshow :: WebCrawlerConfigurationProperty -> String
show :: WebCrawlerConfigurationProperty -> String
$cshowList :: [WebCrawlerConfigurationProperty] -> ShowS
showList :: [WebCrawlerConfigurationProperty] -> ShowS
Prelude.Show)
mkWebCrawlerConfigurationProperty ::
WebCrawlerUrlsProperty -> WebCrawlerConfigurationProperty
mkWebCrawlerConfigurationProperty :: WebCrawlerUrlsProperty -> WebCrawlerConfigurationProperty
mkWebCrawlerConfigurationProperty WebCrawlerUrlsProperty
urls
= WebCrawlerConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), urls :: WebCrawlerUrlsProperty
urls = WebCrawlerUrlsProperty
urls,
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
authenticationConfiguration = Maybe WebCrawlerAuthenticationConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
crawlDepth :: Maybe (Value Integer)
crawlDepth = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxContentSizePerPageInMegaBytes = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
maxLinksPerPage :: Maybe (Value Integer)
maxLinksPerPage = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
proxyConfiguration :: Maybe ProxyConfigurationProperty
proxyConfiguration = Maybe ProxyConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
urlExclusionPatterns :: Maybe (ValueList Text)
urlExclusionPatterns = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
urlInclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties WebCrawlerConfigurationProperty where
toResourceProperties :: WebCrawlerConfigurationProperty -> ResourceProperties
toResourceProperties WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::Kendra::DataSource.WebCrawlerConfiguration",
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
"Urls" Key -> WebCrawlerUrlsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= WebCrawlerUrlsProperty
urls]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key
-> WebCrawlerAuthenticationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticationConfiguration"
(WebCrawlerAuthenticationConfigurationProperty -> (Key, Value))
-> Maybe WebCrawlerAuthenticationConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe WebCrawlerAuthenticationConfigurationProperty
authenticationConfiguration,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CrawlDepth" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
crawlDepth,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaxContentSizePerPageInMegaBytes"
(Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
maxContentSizePerPageInMegaBytes,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaxLinksPerPage" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
maxLinksPerPage,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaxUrlsPerMinuteCrawlRate"
(Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate,
Key -> ProxyConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ProxyConfiguration" (ProxyConfigurationProperty -> (Key, Value))
-> Maybe ProxyConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ProxyConfigurationProperty
proxyConfiguration,
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
"UrlExclusionPatterns" (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)
urlExclusionPatterns,
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
"UrlInclusionPatterns"
(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)
urlInclusionPatterns]))}
instance JSON.ToJSON WebCrawlerConfigurationProperty where
toJSON :: WebCrawlerConfigurationProperty -> Value
toJSON WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= [(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
"Urls" Key -> WebCrawlerUrlsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= WebCrawlerUrlsProperty
urls]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key
-> WebCrawlerAuthenticationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticationConfiguration"
(WebCrawlerAuthenticationConfigurationProperty -> (Key, Value))
-> Maybe WebCrawlerAuthenticationConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe WebCrawlerAuthenticationConfigurationProperty
authenticationConfiguration,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CrawlDepth" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
crawlDepth,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaxContentSizePerPageInMegaBytes"
(Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
maxContentSizePerPageInMegaBytes,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaxLinksPerPage" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
maxLinksPerPage,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaxUrlsPerMinuteCrawlRate"
(Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate,
Key -> ProxyConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ProxyConfiguration" (ProxyConfigurationProperty -> (Key, Value))
-> Maybe ProxyConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ProxyConfigurationProperty
proxyConfiguration,
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
"UrlExclusionPatterns" (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)
urlExclusionPatterns,
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
"UrlInclusionPatterns"
(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)
urlInclusionPatterns])))
instance Property "AuthenticationConfiguration" WebCrawlerConfigurationProperty where
type PropertyType "AuthenticationConfiguration" WebCrawlerConfigurationProperty = WebCrawlerAuthenticationConfigurationProperty
set :: PropertyType
"AuthenticationConfiguration" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType
"AuthenticationConfiguration" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty
{authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
authenticationConfiguration = WebCrawlerAuthenticationConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"AuthenticationConfiguration" WebCrawlerConfigurationProperty
WebCrawlerAuthenticationConfigurationProperty
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: ()
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
haddock_workaround_ :: ()
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
instance Property "CrawlDepth" WebCrawlerConfigurationProperty where
type PropertyType "CrawlDepth" WebCrawlerConfigurationProperty = Value Prelude.Integer
set :: PropertyType "CrawlDepth" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType "CrawlDepth" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty
{crawlDepth :: Maybe (Value Integer)
crawlDepth = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CrawlDepth" WebCrawlerConfigurationProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
instance Property "MaxContentSizePerPageInMegaBytes" WebCrawlerConfigurationProperty where
type PropertyType "MaxContentSizePerPageInMegaBytes" WebCrawlerConfigurationProperty = Value Prelude.Double
set :: PropertyType
"MaxContentSizePerPageInMegaBytes" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType
"MaxContentSizePerPageInMegaBytes" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty
{maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxContentSizePerPageInMegaBytes = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"MaxContentSizePerPageInMegaBytes" WebCrawlerConfigurationProperty
Value Double
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
instance Property "MaxLinksPerPage" WebCrawlerConfigurationProperty where
type PropertyType "MaxLinksPerPage" WebCrawlerConfigurationProperty = Value Prelude.Integer
set :: PropertyType "MaxLinksPerPage" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType "MaxLinksPerPage" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty
{maxLinksPerPage :: Maybe (Value Integer)
maxLinksPerPage = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MaxLinksPerPage" WebCrawlerConfigurationProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
instance Property "MaxUrlsPerMinuteCrawlRate" WebCrawlerConfigurationProperty where
type PropertyType "MaxUrlsPerMinuteCrawlRate" WebCrawlerConfigurationProperty = Value Prelude.Integer
set :: PropertyType
"MaxUrlsPerMinuteCrawlRate" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType
"MaxUrlsPerMinuteCrawlRate" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty
{maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"MaxUrlsPerMinuteCrawlRate" WebCrawlerConfigurationProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
instance Property "ProxyConfiguration" WebCrawlerConfigurationProperty where
type PropertyType "ProxyConfiguration" WebCrawlerConfigurationProperty = ProxyConfigurationProperty
set :: PropertyType "ProxyConfiguration" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType "ProxyConfiguration" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty
{proxyConfiguration :: Maybe ProxyConfigurationProperty
proxyConfiguration = ProxyConfigurationProperty -> Maybe ProxyConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ProxyConfiguration" WebCrawlerConfigurationProperty
ProxyConfigurationProperty
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
instance Property "UrlExclusionPatterns" WebCrawlerConfigurationProperty where
type PropertyType "UrlExclusionPatterns" WebCrawlerConfigurationProperty = ValueList Prelude.Text
set :: PropertyType "UrlExclusionPatterns" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType "UrlExclusionPatterns" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty
{urlExclusionPatterns :: Maybe (ValueList Text)
urlExclusionPatterns = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UrlExclusionPatterns" WebCrawlerConfigurationProperty
ValueList Text
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
instance Property "UrlInclusionPatterns" WebCrawlerConfigurationProperty where
type PropertyType "UrlInclusionPatterns" WebCrawlerConfigurationProperty = ValueList Prelude.Text
set :: PropertyType "UrlInclusionPatterns" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType "UrlInclusionPatterns" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty
{urlInclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UrlInclusionPatterns" WebCrawlerConfigurationProperty
ValueList Text
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
instance Property "Urls" WebCrawlerConfigurationProperty where
type PropertyType "Urls" WebCrawlerConfigurationProperty = WebCrawlerUrlsProperty
set :: PropertyType "Urls" WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
-> WebCrawlerConfigurationProperty
set PropertyType "Urls" WebCrawlerConfigurationProperty
newValue WebCrawlerConfigurationProperty {Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
WebCrawlerUrlsProperty
haddock_workaround_ :: WebCrawlerConfigurationProperty -> ()
authenticationConfiguration :: WebCrawlerConfigurationProperty
-> Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: WebCrawlerConfigurationProperty -> Maybe (Value Double)
maxLinksPerPage :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: WebCrawlerConfigurationProperty -> Maybe (Value Integer)
proxyConfiguration :: WebCrawlerConfigurationProperty -> Maybe ProxyConfigurationProperty
urlExclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urlInclusionPatterns :: WebCrawlerConfigurationProperty -> Maybe (ValueList Text)
urls :: WebCrawlerConfigurationProperty -> WebCrawlerUrlsProperty
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
urls :: WebCrawlerUrlsProperty
..}
= WebCrawlerConfigurationProperty {urls :: WebCrawlerUrlsProperty
urls = PropertyType "Urls" WebCrawlerConfigurationProperty
WebCrawlerUrlsProperty
newValue, Maybe (ValueList Text)
Maybe (Value Double)
Maybe (Value Integer)
Maybe ProxyConfigurationProperty
Maybe WebCrawlerAuthenticationConfigurationProperty
()
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
haddock_workaround_ :: ()
authenticationConfiguration :: Maybe WebCrawlerAuthenticationConfigurationProperty
crawlDepth :: Maybe (Value Integer)
maxContentSizePerPageInMegaBytes :: Maybe (Value Double)
maxLinksPerPage :: Maybe (Value Integer)
maxUrlsPerMinuteCrawlRate :: Maybe (Value Integer)
proxyConfiguration :: Maybe ProxyConfigurationProperty
urlExclusionPatterns :: Maybe (ValueList Text)
urlInclusionPatterns :: Maybe (ValueList Text)
..}