interface SalesforceStandardObjectAttachmentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins.CfnDataSourcePropsMixin.SalesforceStandardObjectAttachmentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskendra/mixins#CfnDataSourcePropsMixin_SalesforceStandardObjectAttachmentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kendra.mixins.CfnDataSourcePropsMixin.SalesforceStandardObjectAttachmentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kendra.mixins.CfnDataSourcePropsMixin.SalesforceStandardObjectAttachmentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kendra » mixins » CfnDataSourcePropsMixin » SalesforceStandardObjectAttachmentConfigurationProperty |
Provides the configuration information for processing attachments to Salesforce standard objects.
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 salesforceStandardObjectAttachmentConfigurationProperty: kendra_mixins.CfnDataSourcePropsMixin.SalesforceStandardObjectAttachmentConfigurationProperty = {
documentTitleFieldName: 'documentTitleFieldName',
fieldMappings: [{
dataSourceFieldName: 'dataSourceFieldName',
dateFieldFormat: 'dateFieldFormat',
indexFieldName: 'indexFieldName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| document | string | The name of the field used for the document title. |
| field | IResolvable | (IResolvable | Data)[] | One or more objects that map fields in attachments to Amazon Kendra index fields. |
documentTitleFieldName?
Type:
string
(optional)
The name of the field used for the document title.
fieldMappings?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
One or more objects that map fields in attachments to Amazon Kendra index fields.

.NET
Go
Java
Python
TypeScript