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.
5989 5990 5991 5992 5993 5994 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 5989 class ParsingConfiguration < Struct.new( :bedrock_foundation_model_configuration, :parsing_strategy) SENSITIVE = [] include Aws::Structure end |
#parsing_strategy ⇒ String
The parsing strategy for the data source.
5989 5990 5991 5992 5993 5994 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 5989 class ParsingConfiguration < Struct.new( :bedrock_foundation_model_configuration, :parsing_strategy) SENSITIVE = [] include Aws::Structure end |