[][src]Struct rusoto_kendra::UpdateIndexRequest

pub struct UpdateIndexRequest {
    pub capacity_units: Option<CapacityUnitsConfiguration>,
    pub description: Option<String>,
    pub document_metadata_configuration_updates: Option<Vec<DocumentMetadataConfiguration>>,
    pub id: String,
    pub name: Option<String>,
    pub role_arn: Option<String>,
}

Fields

capacity_units: Option<CapacityUnitsConfiguration>

Sets the number of addtional storage and query capacity units that should be used by the index. You can change the capacity of the index up to 5 times per day.

If you are using extra storage units, you can't reduce the storage capacity below that required to meet the storage needs for your index.

description: Option<String>

A new description for the index.

document_metadata_configuration_updates: Option<Vec<DocumentMetadataConfiguration>>

The document metadata to update.

id: String

The identifier of the index to update.

name: Option<String>

The name of the index to update.

role_arn: Option<String>

A new IAM role that gives Amazon Kendra permission to access your Amazon CloudWatch logs.

Trait Implementations

impl Clone for UpdateIndexRequest[src]

impl Debug for UpdateIndexRequest[src]

impl Default for UpdateIndexRequest[src]

impl PartialEq<UpdateIndexRequest> for UpdateIndexRequest[src]

impl Serialize for UpdateIndexRequest[src]

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