Class: Aws::Kendra::Types::InlineCustomDocumentEnrichmentConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::InlineCustomDocumentEnrichmentConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides the configuration information for applying basic logic to alter document metadata and content when ingesting documents into Amazon Kendra. To apply advanced logic, to go beyond what you can do with basic logic, see [HookConfiguration].
For more information, see [Customizing document metadata during the ingestion process].
[1]: docs.aws.amazon.com/kendra/latest/dg/API_HookConfiguration.html [2]: docs.aws.amazon.com/kendra/latest/dg/custom-document-enrichment.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition ⇒ Types::DocumentAttributeCondition
Configuration of the condition used for the target document attribute or metadata field when ingesting documents into Amazon Kendra.
-
#document_content_deletion ⇒ Boolean
‘TRUE` to delete content if the condition used for the target attribute is met.
-
#target ⇒ Types::DocumentAttributeTarget
Configuration of the target document attribute or metadata field when ingesting documents into Amazon Kendra.
Instance Attribute Details
#condition ⇒ Types::DocumentAttributeCondition
Configuration of the condition used for the target document attribute or metadata field when ingesting documents into Amazon Kendra.
6454 6455 6456 6457 6458 6459 6460 |
# File 'lib/aws-sdk-kendra/types.rb', line 6454 class InlineCustomDocumentEnrichmentConfiguration < Struct.new( :condition, :target, :document_content_deletion) SENSITIVE = [] include Aws::Structure end |
#document_content_deletion ⇒ Boolean
‘TRUE` to delete content if the condition used for the target attribute is met.
6454 6455 6456 6457 6458 6459 6460 |
# File 'lib/aws-sdk-kendra/types.rb', line 6454 class InlineCustomDocumentEnrichmentConfiguration < Struct.new( :condition, :target, :document_content_deletion) SENSITIVE = [] include Aws::Structure end |
#target ⇒ Types::DocumentAttributeTarget
Configuration of the target document attribute or metadata field when ingesting documents into Amazon Kendra. You can also include a value.
6454 6455 6456 6457 6458 6459 6460 |
# File 'lib/aws-sdk-kendra/types.rb', line 6454 class InlineCustomDocumentEnrichmentConfiguration < Struct.new( :condition, :target, :document_content_deletion) SENSITIVE = [] include Aws::Structure end |