Class: Aws::BedrockAgent::Types::WebCrawlerLimits
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::WebCrawlerLimits
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
The rate limits for the URLs that you want to crawl. You should be authorized to crawl the URLs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_pages ⇒ Integer
The max number of web pages crawled from your source URLs, up to 25,000 pages.
-
#rate_limit ⇒ Integer
The max rate at which pages are crawled, up to 300 per minute per host.
Instance Attribute Details
#max_pages ⇒ Integer
The max number of web pages crawled from your source URLs, up to 25,000 pages. If the web pages exceed this limit, the data source sync will fail and no web pages will be ingested.
10630 10631 10632 10633 10634 10635 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 10630 class WebCrawlerLimits < Struct.new( :max_pages, :rate_limit) SENSITIVE = [] include Aws::Structure end |
#rate_limit ⇒ Integer
The max rate at which pages are crawled, up to 300 per minute per host.
10630 10631 10632 10633 10634 10635 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 10630 class WebCrawlerLimits < Struct.new( :max_pages, :rate_limit) SENSITIVE = [] include Aws::Structure end |