interface SalesforceStandardKnowledgeArticleTypeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Kendra.CfnDataSource.SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskendra#CfnDataSource_SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
Java | software.amazon.awscdk.services.kendra.CfnDataSource.SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
Python | aws_cdk.aws_kendra.CfnDataSource.SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_kendra » CfnDataSource » SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
Provides the configuration information for standard Salesforce knowledge articles.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kendra as kendra } from 'aws-cdk-lib';
const salesforceStandardKnowledgeArticleTypeConfigurationProperty: kendra.CfnDataSource.SalesforceStandardKnowledgeArticleTypeConfigurationProperty = {
documentDataFieldName: 'documentDataFieldName',
// the properties below are optional
documentTitleFieldName: 'documentTitleFieldName',
fieldMappings: [{
dataSourceFieldName: 'dataSourceFieldName',
indexFieldName: 'indexFieldName',
// the properties below are optional
dateFieldFormat: 'dateFieldFormat',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| document | string | The name of the field that contains the document data to index. |
| document | string | The name of the field that contains the document title. |
| field | IResolvable | (IResolvable | Data)[] | Maps attributes or field names of the knowledge article to Amazon Kendra index field names. |
documentDataFieldName
Type:
string
The name of the field that contains the document data to index.
documentTitleFieldName?
Type:
string
(optional)
The name of the field that contains the document title.
fieldMappings?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
Maps attributes or field names of the knowledge article to Amazon Kendra index field names.
To create custom fields, use the UpdateIndex API before you map to Salesforce fields. For more information, see Mapping data source fields . The Salesforce data source field names must exist in your Salesforce custom metadata.

.NET
Go
Java
Python
TypeScript