interface SalesforceStandardKnowledgeArticleTypeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins.CfnDataSourcePropsMixin.SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskendra/mixins#CfnDataSourcePropsMixin_SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kendra.mixins.CfnDataSourcePropsMixin.SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kendra.mixins.CfnDataSourcePropsMixin.SalesforceStandardKnowledgeArticleTypeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kendra » mixins » CfnDataSourcePropsMixin » 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 { mixins as kendra_mixins } from '@aws-cdk/mixins-preview/aws-kendra';
const salesforceStandardKnowledgeArticleTypeConfigurationProperty: kendra_mixins.CfnDataSourcePropsMixin.SalesforceStandardKnowledgeArticleTypeConfigurationProperty = {
documentDataFieldName: 'documentDataFieldName',
documentTitleFieldName: 'documentTitleFieldName',
fieldMappings: [{
dataSourceFieldName: 'dataSourceFieldName',
dateFieldFormat: 'dateFieldFormat',
indexFieldName: 'indexFieldName',
}],
};
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
(optional)
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