[][src]Struct rusoto_kendra::SalesforceChatterFeedConfiguration

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

Defines configuration for syncing a Salesforce chatter feed. The contents of the object comes from the Salesforce FeedItem table.

Fields

document_data_field_name: String

The name of the column in the Salesforce FeedItem table that contains the content to index. Typically this is the Body column.

document_title_field_name: Option<String>

The name of the column in the Salesforce FeedItem table that contains the title of the document. This is typically the Title collumn.

field_mappings: Option<Vec<DataSourceToIndexFieldMapping>>

Maps fields from a Salesforce chatter feed into Amazon Kendra index fields.

include_filter_types: Option<Vec<String>>

Filters the documents in the feed based on status of the user. When you specify ACTIVE_USERS only documents from users who have an active account are indexed. When you specify STANDARD_USER only documents for Salesforce standard users are documented. You can specify both.

Trait Implementations

impl Clone for SalesforceChatterFeedConfiguration[src]

impl Debug for SalesforceChatterFeedConfiguration[src]

impl Default for SalesforceChatterFeedConfiguration[src]

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

impl PartialEq<SalesforceChatterFeedConfiguration> for SalesforceChatterFeedConfiguration[src]

impl Serialize for SalesforceChatterFeedConfiguration[src]

impl StructuralPartialEq for SalesforceChatterFeedConfiguration[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, 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> Sealed<T> for T where
    T: ?Sized

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.