Class: Aws::QConnect::Types::ParsingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::ParsingConfiguration
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Settings for parsing document contents. By default, the service converts the contents of each document into text before splitting it into chunks. To improve processing of PDF files with tables and images, you can configure the data source to convert the pages of text into images and use a model to describe the contents of each page.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bedrock_foundation_model_configuration ⇒ Types::BedrockFoundationModelConfigurationForParsing
Settings for a foundation model used to parse documents for a data source.
-
#parsing_strategy ⇒ String
The parsing strategy for the data source.
Instance Attribute Details
#bedrock_foundation_model_configuration ⇒ Types::BedrockFoundationModelConfigurationForParsing
Settings for a foundation model used to parse documents for a data source.
7355 7356 7357 7358 7359 7360 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7355 class ParsingConfiguration < Struct.new( :parsing_strategy, :bedrock_foundation_model_configuration) SENSITIVE = [] include Aws::Structure end |
#parsing_strategy ⇒ String
The parsing strategy for the data source.
7355 7356 7357 7358 7359 7360 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7355 class ParsingConfiguration < Struct.new( :parsing_strategy, :bedrock_foundation_model_configuration) SENSITIVE = [] include Aws::Structure end |