Interface CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kendra.*;
 SalesforceStandardObjectAttachmentConfigurationProperty salesforceStandardObjectAttachmentConfigurationProperty = SalesforceStandardObjectAttachmentConfigurationProperty.builder()
         .documentTitleFieldName("documentTitleFieldName")
         .fieldMappings(List.of(DataSourceToIndexFieldMappingProperty.builder()
                 .dataSourceFieldName("dataSourceFieldName")
                 .indexFieldName("indexFieldName")
                 // the properties below are optional
                 .dateFieldFormat("dateFieldFormat")
                 .build()))
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getDocumentTitleFieldNameThe name of the field used for the document title.
- 
getFieldMappingsOne or more objects that map fields in attachments to Amazon Kendra index fields.
- 
builder@Stability(Stable) static CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty.Builder builder()
 
-