[][src]Struct rusoto_kendra::ConfluenceAttachmentConfiguration

pub struct ConfluenceAttachmentConfiguration {
    pub attachment_field_mappings: Option<Vec<ConfluenceAttachmentToIndexFieldMapping>>,
    pub crawl_attachments: Option<bool>,
}

Specifies the attachment settings for the Confluence data source. Attachment settings are optional, if you don't specify settings attachments, Amazon Kendra won't index them.

Fields

attachment_field_mappings: Option<Vec<ConfluenceAttachmentToIndexFieldMapping>>

Defines how attachment metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation.

If you specify the AttachentFieldMappings parameter, you must specify at least one field mapping.

crawl_attachments: Option<bool>

Indicates whether Amazon Kendra indexes attachments to the pages and blogs in the Confluence data source.

Trait Implementations

impl Clone for ConfluenceAttachmentConfiguration[src]

impl Debug for ConfluenceAttachmentConfiguration[src]

impl Default for ConfluenceAttachmentConfiguration[src]

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

impl PartialEq<ConfluenceAttachmentConfiguration> for ConfluenceAttachmentConfiguration[src]

impl Serialize for ConfluenceAttachmentConfiguration[src]

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