interface SalesforceStandardObjectAttachmentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Kendra.CfnDataSourcePropsMixin.SalesforceStandardObjectAttachmentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskendra#CfnDataSourcePropsMixin_SalesforceStandardObjectAttachmentConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kendra.CfnDataSourcePropsMixin.SalesforceStandardObjectAttachmentConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kendra.CfnDataSourcePropsMixin.SalesforceStandardObjectAttachmentConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kendra » 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 { aws_kendra as kendra } from '@aws-cdk/cfn-property-mixins';
const salesforceStandardObjectAttachmentConfigurationProperty: kendra.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