[][src]Struct rusoto_kendra::UpdateDataSourceRequest

pub struct UpdateDataSourceRequest {
    pub configuration: Option<DataSourceConfiguration>,
    pub description: Option<String>,
    pub id: String,
    pub index_id: String,
    pub name: Option<String>,
    pub role_arn: Option<String>,
    pub schedule: Option<String>,
}

Fields

configuration: Option<DataSourceConfiguration>description: Option<String>

The new description for the data source.

id: String

The unique identifier of the data source to update.

index_id: String

The identifier of the index that contains the data source to update.

name: Option<String>

The name of the data source to update. The name of the data source can't be updated. To rename a data source you must delete the data source and re-create it.

role_arn: Option<String>

The Amazon Resource Name (ARN) of the new role to use when the data source is accessing resources on your behalf.

schedule: Option<String>

The new update schedule for the data source.

Trait Implementations

impl Clone for UpdateDataSourceRequest[src]

impl Debug for UpdateDataSourceRequest[src]

impl Default for UpdateDataSourceRequest[src]

impl PartialEq<UpdateDataSourceRequest> for UpdateDataSourceRequest[src]

impl Serialize for UpdateDataSourceRequest[src]

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