Interface SalesforceStandardKnowledgeArticleTypeConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SalesforceStandardKnowledgeArticleTypeConfiguration.Builder,SalesforceStandardKnowledgeArticleTypeConfiguration>,SdkBuilder<SalesforceStandardKnowledgeArticleTypeConfiguration.Builder,SalesforceStandardKnowledgeArticleTypeConfiguration>,SdkPojo
- Enclosing class:
- SalesforceStandardKnowledgeArticleTypeConfiguration
public static interface SalesforceStandardKnowledgeArticleTypeConfiguration.Builder extends SdkPojo, CopyableBuilder<SalesforceStandardKnowledgeArticleTypeConfiguration.Builder,SalesforceStandardKnowledgeArticleTypeConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SalesforceStandardKnowledgeArticleTypeConfiguration.BuilderdocumentDataFieldName(String documentDataFieldName)The name of the field that contains the document data to index.SalesforceStandardKnowledgeArticleTypeConfiguration.BuilderdocumentTitleFieldName(String documentTitleFieldName)The name of the field that contains the document title.SalesforceStandardKnowledgeArticleTypeConfiguration.BuilderfieldMappings(Collection<DataSourceToIndexFieldMapping> fieldMappings)Maps attributes or field names of the knowledge article to Amazon Kendra index field names.SalesforceStandardKnowledgeArticleTypeConfiguration.BuilderfieldMappings(Consumer<DataSourceToIndexFieldMapping.Builder>... fieldMappings)Maps attributes or field names of the knowledge article to Amazon Kendra index field names.SalesforceStandardKnowledgeArticleTypeConfiguration.BuilderfieldMappings(DataSourceToIndexFieldMapping... fieldMappings)Maps attributes or field names of the knowledge article to Amazon Kendra index field names.-
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
-
documentDataFieldName
SalesforceStandardKnowledgeArticleTypeConfiguration.Builder documentDataFieldName(String documentDataFieldName)
The name of the field that contains the document data to index.
- Parameters:
documentDataFieldName- The name of the field that contains the document data to index.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
documentTitleFieldName
SalesforceStandardKnowledgeArticleTypeConfiguration.Builder documentTitleFieldName(String documentTitleFieldName)
The name of the field that contains the document title.
- Parameters:
documentTitleFieldName- The name of the field that contains the document title.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldMappings
SalesforceStandardKnowledgeArticleTypeConfiguration.Builder fieldMappings(Collection<DataSourceToIndexFieldMapping> fieldMappings)
Maps attributes or field names of the knowledge article 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 knowledge article 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
SalesforceStandardKnowledgeArticleTypeConfiguration.Builder fieldMappings(DataSourceToIndexFieldMapping... fieldMappings)
Maps attributes or field names of the knowledge article 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 knowledge article 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
SalesforceStandardKnowledgeArticleTypeConfiguration.Builder fieldMappings(Consumer<DataSourceToIndexFieldMapping.Builder>... fieldMappings)
Maps attributes or field names of the knowledge article 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)
-
-