[][src]Struct rusoto_kendra::DescribeIndexResponse

pub struct DescribeIndexResponse {
    pub capacity_units: Option<CapacityUnitsConfiguration>,
    pub created_at: Option<f64>,
    pub description: Option<String>,
    pub document_metadata_configurations: Option<Vec<DocumentMetadataConfiguration>>,
    pub edition: Option<String>,
    pub error_message: Option<String>,
    pub id: Option<String>,
    pub index_statistics: Option<IndexStatistics>,
    pub name: Option<String>,
    pub role_arn: Option<String>,
    pub server_side_encryption_configuration: Option<ServerSideEncryptionConfiguration>,
    pub status: Option<String>,
    pub updated_at: Option<f64>,
}

Fields

capacity_units: Option<CapacityUnitsConfiguration>

For enterprise edtion indexes, you can choose to use additional capacity to meet the needs of your application. This contains the capacity units used for the index. A 0 for the query capacity or the storage capacity indicates that the index is using the default capacity for the index.

created_at: Option<f64>

The Unix datetime that the index was created.

description: Option<String>

The description of the index.

document_metadata_configurations: Option<Vec<DocumentMetadataConfiguration>>

Configuration settings for any metadata applied to the documents in the index.

edition: Option<String>

The Amazon Kendra edition used for the index. You decide the edition when you create the index.

error_message: Option<String>

When th eStatus field value is FAILED, the ErrorMessage field contains a message that explains why.

id: Option<String>

the name of the index.

index_statistics: Option<IndexStatistics>

Provides information about the number of FAQ questions and answers and the number of text documents indexed.

name: Option<String>

The name of the index.

role_arn: Option<String>

The Amazon Resource Name (ARN) of the IAM role that gives Amazon Kendra permission to write to your Amazon Cloudwatch logs.

server_side_encryption_configuration: Option<ServerSideEncryptionConfiguration>

The identifier of the AWS KMS customer master key (CMK) used to encrypt your data. Amazon Kendra doesn't support asymmetric CMKs.

status: Option<String>

The current status of the index. When the value is ACTIVE, the index is ready for use. If the Status field value is FAILED, the ErrorMessage field contains a message that explains why.

updated_at: Option<f64>

The Unix datetime that the index was last updated.

Trait Implementations

impl Clone for DescribeIndexResponse[src]

impl Debug for DescribeIndexResponse[src]

impl Default for DescribeIndexResponse[src]

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

impl PartialEq<DescribeIndexResponse> for DescribeIndexResponse[src]

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