Class: Aws::Kendra::Types::CustomDocumentEnrichmentConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::CustomDocumentEnrichmentConfiguration
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
Provides the configuration information for altering document metadata and content during the document ingestion process.
For more information, see Customizing document metadata during the ingestion process.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#inline_configurations ⇒ Array<Types::InlineCustomDocumentEnrichmentConfiguration>
Configuration information to alter document attributes or metadata fields and content when ingesting documents into Amazon Kendra.
-
#post_extraction_hook_configuration ⇒ Types::HookConfiguration
Configuration information for invoking a Lambda function in Lambda on the structured documents with their metadata and text extracted.
-
#pre_extraction_hook_configuration ⇒ Types::HookConfiguration
Configuration information for invoking a Lambda function in Lambda on the original or raw documents before extracting their metadata and text.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of a role with permission to run
PreExtractionHookConfiguration
andPostExtractionHookConfiguration
for altering document metadata and content during the document ingestion process.
Instance Attribute Details
#inline_configurations ⇒ Array<Types::InlineCustomDocumentEnrichmentConfiguration>
Configuration information to alter document attributes or metadata fields and content when ingesting documents into Amazon Kendra.
2542 2543 2544 2545 2546 2547 2548 2549 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 2542 class CustomDocumentEnrichmentConfiguration < Struct.new( :inline_configurations, :pre_extraction_hook_configuration, :post_extraction_hook_configuration, :role_arn) SENSITIVE = [] include Aws::Structure end |
#post_extraction_hook_configuration ⇒ Types::HookConfiguration
Configuration information for invoking a Lambda function in Lambda on the structured documents with their metadata and text extracted. You can use a Lambda function to apply advanced logic for creating, modifying, or deleting document metadata and content. For more information, see Advanced data manipulation.
2542 2543 2544 2545 2546 2547 2548 2549 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 2542 class CustomDocumentEnrichmentConfiguration < Struct.new( :inline_configurations, :pre_extraction_hook_configuration, :post_extraction_hook_configuration, :role_arn) SENSITIVE = [] include Aws::Structure end |
#pre_extraction_hook_configuration ⇒ Types::HookConfiguration
Configuration information for invoking a Lambda function in Lambda on the original or raw documents before extracting their metadata and text. You can use a Lambda function to apply advanced logic for creating, modifying, or deleting document metadata and content. For more information, see Advanced data manipulation.
2542 2543 2544 2545 2546 2547 2548 2549 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 2542 class CustomDocumentEnrichmentConfiguration < Struct.new( :inline_configurations, :pre_extraction_hook_configuration, :post_extraction_hook_configuration, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of a role with permission to run
PreExtractionHookConfiguration
and
PostExtractionHookConfiguration
for altering document metadata and
content during the document ingestion process. For more information,
see IAM roles for Amazon Kendra.
2542 2543 2544 2545 2546 2547 2548 2549 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 2542 class CustomDocumentEnrichmentConfiguration < Struct.new( :inline_configurations, :pre_extraction_hook_configuration, :post_extraction_hook_configuration, :role_arn) SENSITIVE = [] include Aws::Structure end |