[][src]Struct rusoto_kendra::ConfluencePageToIndexFieldMapping

pub struct ConfluencePageToIndexFieldMapping {
    pub data_source_field_name: Option<String>,
    pub date_field_format: Option<String>,
    pub index_field_name: Option<String>,
}

Defines the mapping between a field in the Confluence data source to a Amazon Kendra index field.

You must first create the index field using the operation.

Fields

data_source_field_name: Option<String>

The name of the field in the data source.

date_field_format: Option<String>

The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.

index_field_name: Option<String>

The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.

Trait Implementations

impl Clone for ConfluencePageToIndexFieldMapping[src]

impl Debug for ConfluencePageToIndexFieldMapping[src]

impl Default for ConfluencePageToIndexFieldMapping[src]

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

impl PartialEq<ConfluencePageToIndexFieldMapping> for ConfluencePageToIndexFieldMapping[src]

impl Serialize for ConfluencePageToIndexFieldMapping[src]

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