[][src]Struct rusoto_kendra::SalesforceStandardObjectConfiguration

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

Specifies confguration information for indexing a single standard object.

Fields

document_data_field_name: String

The name of the field in the standard object table that contains the document contents.

document_title_field_name: Option<String>

The name of the field in the standard object table that contains the document titleB.

field_mappings: Option<Vec<DataSourceToIndexFieldMapping>>

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

name: String

The name of the standard object.

Trait Implementations

impl Clone for SalesforceStandardObjectConfiguration[src]

impl Debug for SalesforceStandardObjectConfiguration[src]

impl Default for SalesforceStandardObjectConfiguration[src]

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

impl PartialEq<SalesforceStandardObjectConfiguration> for SalesforceStandardObjectConfiguration[src]

impl Serialize for SalesforceStandardObjectConfiguration[src]

impl StructuralPartialEq for SalesforceStandardObjectConfiguration[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.