[][src]Struct rusoto_kendra::SalesforceStandardKnowledgeArticleTypeConfiguration

pub struct SalesforceStandardKnowledgeArticleTypeConfiguration {
    pub document_data_field_name: String,
    pub document_title_field_name: Option<String>,
    pub field_mappings: Option<Vec<DataSourceToIndexFieldMapping>>,
}

Provides configuration information for standard Salesforce knowledge articles.

Fields

document_data_field_name: String

The name of the field that contains the document data to index.

document_title_field_name: Option<String>

The name of the field that contains the document title.

field_mappings: Option<Vec<DataSourceToIndexFieldMapping>>

One or more objects that map fields in the knowledge article to Amazon Kendra index fields. The index field must exist before you can map a Salesforce field to it.

Trait Implementations

impl Clone for SalesforceStandardKnowledgeArticleTypeConfiguration[src]

impl Debug for SalesforceStandardKnowledgeArticleTypeConfiguration[src]

impl Default for SalesforceStandardKnowledgeArticleTypeConfiguration[src]

impl<'de> Deserialize<'de> for SalesforceStandardKnowledgeArticleTypeConfiguration[src]

impl PartialEq<SalesforceStandardKnowledgeArticleTypeConfiguration> for SalesforceStandardKnowledgeArticleTypeConfiguration[src]

impl Serialize for SalesforceStandardKnowledgeArticleTypeConfiguration[src]

impl StructuralPartialEq for SalesforceStandardKnowledgeArticleTypeConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.