[][src]Struct rusoto_kendra::DocumentMetadataConfiguration

pub struct DocumentMetadataConfiguration {
    pub name: String,
    pub relevance: Option<Relevance>,
    pub search: Option<Search>,
    pub type_: String,
}

Specifies the properties of a custom index field.

Fields

name: String

The name of the index field.

relevance: Option<Relevance>

Provides manual tuning parameters to determine how the field affects the search results.

search: Option<Search>

Provides information about how the field is used during a search.

type_: String

The data type of the index field.

Trait Implementations

impl Clone for DocumentMetadataConfiguration[src]

impl Debug for DocumentMetadataConfiguration[src]

impl Default for DocumentMetadataConfiguration[src]

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

impl PartialEq<DocumentMetadataConfiguration> for DocumentMetadataConfiguration[src]

impl Serialize for DocumentMetadataConfiguration[src]

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