[][src]Struct rusoto_kendra::FaqSummary

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

Provides information about a frequently asked questions and answer contained in an index.

Fields

created_at: Option<f64>

The UNIX datetime that the FAQ was added to the index.

id: Option<String>

The unique identifier of the FAQ.

name: Option<String>

The name that you assigned the FAQ when you created or updated the FAQ.

status: Option<String>

The current status of the FAQ. When the status is ACTIVE the FAQ is ready for use.

updated_at: Option<f64>

The UNIX datetime that the FAQ was last updated.

Trait Implementations

impl Clone for FaqSummary[src]

impl Debug for FaqSummary[src]

impl Default for FaqSummary[src]

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

impl PartialEq<FaqSummary> for FaqSummary[src]

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