interface InlineDocumentEnrichmentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnDataSourcePropsMixin.InlineDocumentEnrichmentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnDataSourcePropsMixin_InlineDocumentEnrichmentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnDataSourcePropsMixin.InlineDocumentEnrichmentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnDataSourcePropsMixin.InlineDocumentEnrichmentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnDataSourcePropsMixin » InlineDocumentEnrichmentConfigurationProperty |
Provides the configuration information for applying basic logic to alter document metadata and content when ingesting documents into Amazon Q Business.
To apply advanced logic, to go beyond what you can do with basic logic, see HookConfiguration .
For more information, see Custom document enrichment .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
const inlineDocumentEnrichmentConfigurationProperty: qbusiness_mixins.CfnDataSourcePropsMixin.InlineDocumentEnrichmentConfigurationProperty = {
condition: {
key: 'key',
operator: 'operator',
value: {
dateValue: 'dateValue',
longValue: 123,
stringListValue: ['stringListValue'],
stringValue: 'stringValue',
},
},
documentContentOperator: 'documentContentOperator',
target: {
attributeValueOperator: 'attributeValueOperator',
key: 'key',
value: {
dateValue: 'dateValue',
longValue: 123,
stringListValue: ['stringListValue'],
stringValue: 'stringValue',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| condition? | IResolvable | Document | Configuration of the condition used for the target document attribute or metadata field when ingesting documents into Amazon Q Business . |
| document | string | TRUE to delete content if the condition used for the target attribute is met. |
| target? | IResolvable | Document | Configuration of the target document attribute or metadata field when ingesting documents into Amazon Q Business . |
condition?
Type:
IResolvable | Document
(optional)
Configuration of the condition used for the target document attribute or metadata field when ingesting documents into Amazon Q Business .
documentContentOperator?
Type:
string
(optional)
TRUE to delete content if the condition used for the target attribute is met.
target?
Type:
IResolvable | Document
(optional)
Configuration of the target document attribute or metadata field when ingesting documents into Amazon Q Business .
You can also include a value.

.NET
Go
Java
Python
TypeScript