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.
6579 6580 6581 6582 6583 6584 6585 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 6579 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.
6579 6580 6581 6582 6583 6584 6585 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 6579 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.
6579 6580 6581 6582 6583 6584 6585 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 6579 class InlineCustomDocumentEnrichmentConfiguration < Struct.new( :condition, :target, :document_content_deletion) SENSITIVE = [] include Aws::Structure end |