Interface SalesforceStandardObjectConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SalesforceStandardObjectConfiguration.Builder,SalesforceStandardObjectConfiguration>,SdkBuilder<SalesforceStandardObjectConfiguration.Builder,SalesforceStandardObjectConfiguration>,SdkPojo
- Enclosing class:
- SalesforceStandardObjectConfiguration
public static interface SalesforceStandardObjectConfiguration.Builder extends SdkPojo, CopyableBuilder<SalesforceStandardObjectConfiguration.Builder,SalesforceStandardObjectConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SalesforceStandardObjectConfiguration.BuilderdocumentDataFieldName(String documentDataFieldName)The name of the field in the standard object table that contains the document contents.SalesforceStandardObjectConfiguration.BuilderdocumentTitleFieldName(String documentTitleFieldName)The name of the field in the standard object table that contains the document title.SalesforceStandardObjectConfiguration.BuilderfieldMappings(Collection<DataSourceToIndexFieldMapping> fieldMappings)Maps attributes or field names of the standard object to Amazon Kendra index field names.SalesforceStandardObjectConfiguration.BuilderfieldMappings(Consumer<DataSourceToIndexFieldMapping.Builder>... fieldMappings)Maps attributes or field names of the standard object to Amazon Kendra index field names.SalesforceStandardObjectConfiguration.BuilderfieldMappings(DataSourceToIndexFieldMapping... fieldMappings)Maps attributes or field names of the standard object to Amazon Kendra index field names.SalesforceStandardObjectConfiguration.Buildername(String name)The name of the standard object.SalesforceStandardObjectConfiguration.Buildername(SalesforceStandardObjectName name)The name of the standard object.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
name
SalesforceStandardObjectConfiguration.Builder name(String name)
The name of the standard object.
- Parameters:
name- The name of the standard object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SalesforceStandardObjectName,SalesforceStandardObjectName
-
name
SalesforceStandardObjectConfiguration.Builder name(SalesforceStandardObjectName name)
The name of the standard object.
- Parameters:
name- The name of the standard object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SalesforceStandardObjectName,SalesforceStandardObjectName
-
documentDataFieldName
SalesforceStandardObjectConfiguration.Builder documentDataFieldName(String documentDataFieldName)
The name of the field in the standard object table that contains the document contents.
- Parameters:
documentDataFieldName- The name of the field in the standard object table that contains the document contents.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
documentTitleFieldName
SalesforceStandardObjectConfiguration.Builder documentTitleFieldName(String documentTitleFieldName)
The name of the field in the standard object table that contains the document title.
- Parameters:
documentTitleFieldName- The name of the field in the standard object table that contains the document title.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldMappings
SalesforceStandardObjectConfiguration.Builder fieldMappings(Collection<DataSourceToIndexFieldMapping> fieldMappings)
Maps attributes or field names of the standard object to Amazon Kendra index field names. To create custom fields, use the
UpdateIndexAPI 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.- Parameters:
fieldMappings- Maps attributes or field names of the standard object to Amazon Kendra index field names. To create custom fields, use theUpdateIndexAPI 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldMappings
SalesforceStandardObjectConfiguration.Builder fieldMappings(DataSourceToIndexFieldMapping... fieldMappings)
Maps attributes or field names of the standard object to Amazon Kendra index field names. To create custom fields, use the
UpdateIndexAPI 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.- Parameters:
fieldMappings- Maps attributes or field names of the standard object to Amazon Kendra index field names. To create custom fields, use theUpdateIndexAPI 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldMappings
SalesforceStandardObjectConfiguration.Builder fieldMappings(Consumer<DataSourceToIndexFieldMapping.Builder>... fieldMappings)
Maps attributes or field names of the standard object to Amazon Kendra index field names. To create custom fields, use the
This is a convenience method that creates an instance of theUpdateIndexAPI 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.DataSourceToIndexFieldMapping.Builderavoiding the need to create one manually viaDataSourceToIndexFieldMapping.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#fieldMappings(List.) - Parameters:
fieldMappings- a consumer that will call methods onDataSourceToIndexFieldMapping.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#fieldMappings(java.util.Collection)
-
-