interface SalesforceKnowledgeArticleConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins.CfnDataSourcePropsMixin.SalesforceKnowledgeArticleConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskendra/mixins#CfnDataSourcePropsMixin_SalesforceKnowledgeArticleConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kendra.mixins.CfnDataSourcePropsMixin.SalesforceKnowledgeArticleConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kendra.mixins.CfnDataSourcePropsMixin.SalesforceKnowledgeArticleConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kendra » mixins » CfnDataSourcePropsMixin » SalesforceKnowledgeArticleConfigurationProperty |
Provides the configuration information for the knowledge article types that Amazon Kendra indexes.
Amazon Kendra indexes standard knowledge articles and the standard fields of knowledge articles, or the custom fields of custom knowledge articles, but not both
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kendra_mixins } from '@aws-cdk/mixins-preview/aws-kendra';
const salesforceKnowledgeArticleConfigurationProperty: kendra_mixins.CfnDataSourcePropsMixin.SalesforceKnowledgeArticleConfigurationProperty = {
customKnowledgeArticleTypeConfigurations: [{
documentDataFieldName: 'documentDataFieldName',
documentTitleFieldName: 'documentTitleFieldName',
fieldMappings: [{
dataSourceFieldName: 'dataSourceFieldName',
dateFieldFormat: 'dateFieldFormat',
indexFieldName: 'indexFieldName',
}],
name: 'name',
}],
includedStates: ['includedStates'],
standardKnowledgeArticleTypeConfiguration: {
documentDataFieldName: 'documentDataFieldName',
documentTitleFieldName: 'documentTitleFieldName',
fieldMappings: [{
dataSourceFieldName: 'dataSourceFieldName',
dateFieldFormat: 'dateFieldFormat',
indexFieldName: 'indexFieldName',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | (IResolvable | Salesforce)[] | Configuration information for custom Salesforce knowledge articles. |
| included | string[] | Specifies the document states that should be included when Amazon Kendra indexes knowledge articles. |
| standard | IResolvable | Salesforce | Configuration information for standard Salesforce knowledge articles. |
customKnowledgeArticleTypeConfigurations?
Type:
IResolvable | (IResolvable | Salesforce)[]
(optional)
Configuration information for custom Salesforce knowledge articles.
includedStates?
Type:
string[]
(optional)
Specifies the document states that should be included when Amazon Kendra indexes knowledge articles.
You must specify at least one state.
standardKnowledgeArticleTypeConfiguration?
Type:
IResolvable | Salesforce
(optional)
Configuration information for standard Salesforce knowledge articles.

.NET
Go
Java
Python
TypeScript