Interface CfnDataSourcePropsMixin.DocumentAttributeConditionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSourcePropsMixin.DocumentAttributeConditionProperty.Jsii$Proxy
Enclosing class:
CfnDataSourcePropsMixin

@Stability(Stable) public static interface CfnDataSourcePropsMixin.DocumentAttributeConditionProperty extends software.amazon.jsii.JsiiSerializable
The condition used for the target document attribute or metadata field when ingesting documents into Amazon Kendra.

You use this with DocumentAttributeTarget to apply the condition .

For example, you can create the 'Department' target field and have it prefill department names associated with the documents based on information in the 'Source_URI' field. Set the condition that if the 'Source_URI' field contains 'financial' in its URI value, then prefill the target field 'Department' with the target value 'Finance' for the document.

Amazon Kendra cannot create a target field if it has not already been created as an index field. After you create your index field, you can create a document metadata field using DocumentAttributeTarget . Amazon Kendra then will map your newly created metadata field to your index field.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.kendra.*;
 DocumentAttributeConditionProperty documentAttributeConditionProperty = DocumentAttributeConditionProperty.builder()
         .conditionDocumentAttributeKey("conditionDocumentAttributeKey")
         .conditionOnValue(DocumentAttributeValueProperty.builder()
                 .dateValue("dateValue")
                 .longValue(123)
                 .stringListValue(List.of("stringListValue"))
                 .stringValue("stringValue")
                 .build())
         .operator("operator")
         .build();
 

See Also: