Class: Aws::Kendra::Types::InlineCustomDocumentEnrichmentConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::InlineCustomDocumentEnrichmentConfiguration
- Defined in:
- gems/aws-sdk-kendra/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.
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.
5464 5465 5466 5467 5468 5469 5470 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 5464 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.
5464 5465 5466 5467 5468 5469 5470 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 5464 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.
5464 5465 5466 5467 5468 5469 5470 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 5464 class InlineCustomDocumentEnrichmentConfiguration < Struct.new( :condition, :target, :document_content_deletion) SENSITIVE = [] include Aws::Structure end |