Class: Aws::Kendra::Types::SalesforceKnowledgeArticleConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::SalesforceKnowledgeArticleConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
When making an API call, you may pass SalesforceKnowledgeArticleConfiguration data as a hash:
{
included_states: ["DRAFT"], # required, accepts DRAFT, PUBLISHED, ARCHIVED
standard_knowledge_article_type_configuration: {
document_data_field_name: "DataSourceFieldName", # required
document_title_field_name: "DataSourceFieldName",
field_mappings: [
{
data_source_field_name: "DataSourceFieldName", # required
date_field_format: "DataSourceDateFieldFormat",
index_field_name: "IndexFieldName", # required
},
],
},
custom_knowledge_article_type_configurations: [
{
name: "SalesforceCustomKnowledgeArticleTypeName", # required
document_data_field_name: "DataSourceFieldName", # required
document_title_field_name: "DataSourceFieldName",
field_mappings: [
{
data_source_field_name: "DataSourceFieldName", # required
date_field_format: "DataSourceDateFieldFormat",
index_field_name: "IndexFieldName", # required
},
],
},
],
}
Specifies configuration information for the knowlege article types that Amazon Kendra indexes. Amazon Kendra indexes standard knowledge articles and the standard fields of knowledge articles, or the custom fields of custom knowledge articles, but not both
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_knowledge_article_type_configurations ⇒ Array<Types::SalesforceCustomKnowledgeArticleTypeConfiguration>
Provides configuration information for custom Salesforce knowledge articles.
-
#included_states ⇒ Array<String>
Specifies the document states that should be included when Amazon Kendra indexes knowledge articles.
-
#standard_knowledge_article_type_configuration ⇒ Types::SalesforceStandardKnowledgeArticleTypeConfiguration
Provides configuration information for standard Salesforce knowledge articles.
Instance Attribute Details
#custom_knowledge_article_type_configurations ⇒ Array<Types::SalesforceCustomKnowledgeArticleTypeConfiguration>
Provides configuration information for custom Salesforce knowledge articles.
5241 5242 5243 5244 5245 5246 5247 |
# File 'lib/aws-sdk-kendra/types.rb', line 5241 class SalesforceKnowledgeArticleConfiguration < Struct.new( :included_states, :standard_knowledge_article_type_configuration, :custom_knowledge_article_type_configurations) SENSITIVE = [] include Aws::Structure end |
#included_states ⇒ Array<String>
Specifies the document states that should be included when Amazon Kendra indexes knowledge articles. You must specify at least one state.
5241 5242 5243 5244 5245 5246 5247 |
# File 'lib/aws-sdk-kendra/types.rb', line 5241 class SalesforceKnowledgeArticleConfiguration < Struct.new( :included_states, :standard_knowledge_article_type_configuration, :custom_knowledge_article_type_configurations) SENSITIVE = [] include Aws::Structure end |
#standard_knowledge_article_type_configuration ⇒ Types::SalesforceStandardKnowledgeArticleTypeConfiguration
Provides configuration information for standard Salesforce knowledge articles.
5241 5242 5243 5244 5245 5246 5247 |
# File 'lib/aws-sdk-kendra/types.rb', line 5241 class SalesforceKnowledgeArticleConfiguration < Struct.new( :included_states, :standard_knowledge_article_type_configuration, :custom_knowledge_article_type_configurations) SENSITIVE = [] include Aws::Structure end |