[][src]Struct rusoto_kendra::IndexConfigurationSummary

pub struct IndexConfigurationSummary {
    pub created_at: f64,
    pub edition: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub status: String,
    pub updated_at: f64,
}

A summary of information about an index.

Fields

created_at: f64

The Unix timestamp when the index was created.

edition: Option<String>

Indicates whether the index is a enterprise edition index or a developer edition index.

id: Option<String>

A unique identifier for the index. Use this to identify the index when you are using operations such as Query, DescribeIndex, UpdateIndex, and DeleteIndex.

name: Option<String>

The name of the index.

status: String

The current status of the index. When the status is ACTIVE, the index is ready to search.

updated_at: f64

The Unix timestamp when the index was last updated by the UpdateIndex operation.

Trait Implementations

impl Clone for IndexConfigurationSummary[src]

impl Debug for IndexConfigurationSummary[src]

impl Default for IndexConfigurationSummary[src]

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

impl PartialEq<IndexConfigurationSummary> for IndexConfigurationSummary[src]

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