[][src]Struct rusoto_kendra::DescribeDataSourceResponse

pub struct DescribeDataSourceResponse {
    pub configuration: Option<DataSourceConfiguration>,
    pub created_at: Option<f64>,
    pub description: Option<String>,
    pub error_message: Option<String>,
    pub id: Option<String>,
    pub index_id: Option<String>,
    pub name: Option<String>,
    pub role_arn: Option<String>,
    pub schedule: Option<String>,
    pub status: Option<String>,
    pub type_: Option<String>,
    pub updated_at: Option<f64>,
}

Fields

configuration: Option<DataSourceConfiguration>

Information that describes where the data source is located and how the data source is configured. The specific information in the description depends on the data source provider.

created_at: Option<f64>

The Unix timestamp of when the data source was created.

description: Option<String>

The description of the data source.

error_message: Option<String>

When the Status field value is FAILED, the ErrorMessage field contains a description of the error that caused the data source to fail.

id: Option<String>

The identifier of the data source.

index_id: Option<String>

The identifier of the index that contains the data source.

name: Option<String>

The name that you gave the data source when it was created.

role_arn: Option<String>

The Amazon Resource Name (ARN) of the role that enables the data source to access its resources.

schedule: Option<String>

The schedule that Amazon Kendra will update the data source.

status: Option<String>

The current status of the data source. When the status is ACTIVE the data source is ready to use. When the status is FAILED, the ErrorMessage field contains the reason that the data source failed.

type_: Option<String>

The type of the data source.

updated_at: Option<f64>

The Unix timestamp of when the data source was last updated.

Trait Implementations

impl Clone for DescribeDataSourceResponse[src]

impl Debug for DescribeDataSourceResponse[src]

impl Default for DescribeDataSourceResponse[src]

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

impl PartialEq<DescribeDataSourceResponse> for DescribeDataSourceResponse[src]

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