[][src]Struct rusoto_kendra::ServiceNowServiceCatalogConfiguration

pub struct ServiceNowServiceCatalogConfiguration {
    pub crawl_attachments: Option<bool>,
    pub document_data_field_name: String,
    pub document_title_field_name: Option<String>,
    pub exclude_attachment_file_patterns: Option<Vec<String>>,
    pub field_mappings: Option<Vec<DataSourceToIndexFieldMapping>>,
    pub include_attachment_file_patterns: Option<Vec<String>>,
}

Provides configuration information for crawling service catalog items in the ServiceNow site

Fields

crawl_attachments: Option<bool>

Indicates whether Amazon Kendra should crawl attachments to the service catalog items.

document_data_field_name: String

The name of the ServiceNow field that is mapped to the index document contents field in the Amazon Kendra index.

document_title_field_name: Option<String>

The name of the ServiceNow field that is mapped to the index document title field.

exclude_attachment_file_patterns: Option<Vec<String>>

Determines the types of file attachments that are excluded from the index.

field_mappings: Option<Vec<DataSourceToIndexFieldMapping>>

Mapping between ServiceNow fields and Amazon Kendra index fields. You must create the index field before you map the field.

include_attachment_file_patterns: Option<Vec<String>>

Determines the types of file attachments that are included in the index.

Trait Implementations

impl Clone for ServiceNowServiceCatalogConfiguration[src]

impl Debug for ServiceNowServiceCatalogConfiguration[src]

impl Default for ServiceNowServiceCatalogConfiguration[src]

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

impl PartialEq<ServiceNowServiceCatalogConfiguration> for ServiceNowServiceCatalogConfiguration[src]

impl Serialize for ServiceNowServiceCatalogConfiguration[src]

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