public static interface CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty.Builder
|
static class |
CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty.Jsii$Proxy
An implementation for
CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataSource.SalesforceStandardObjectAttachmentConfigurationProperty.Builder |
builder() |
default java.lang.String |
getDocumentTitleFieldName()
The name of the field used for the document title.
|
default java.lang.Object |
getFieldMappings()
One or more objects that map fields in attachments to Amazon Kendra index fields.
|