Class: Aws::BedrockAgent::Types::CrawlFilterConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::CrawlFilterConfiguration
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
The configuration of filtering the data source content. For example, configuring regular expression patterns to include or exclude certain content.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pattern_object_filter ⇒ Types::PatternObjectFilterConfiguration
The configuration of filtering certain objects or content types of the data source.
-
#type ⇒ String
The type of filtering that you want to apply to certain objects or content of the data source.
Instance Attribute Details
#pattern_object_filter ⇒ Types::PatternObjectFilterConfiguration
The configuration of filtering certain objects or content types of the data source.
1730 1731 1732 1733 1734 1735 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 1730 class CrawlFilterConfiguration < Struct.new( :type, :pattern_object_filter) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of filtering that you want to apply to certain objects or
content of the data source. For example, the PATTERN type is
regular expression patterns you can apply to filter your content.
1730 1731 1732 1733 1734 1735 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 1730 class CrawlFilterConfiguration < Struct.new( :type, :pattern_object_filter) SENSITIVE = [] include Aws::Structure end |