[][src]Struct rusoto_kendra::CreateThesaurusRequest

pub struct CreateThesaurusRequest {
    pub client_token: Option<String>,
    pub description: Option<String>,
    pub index_id: String,
    pub name: String,
    pub role_arn: String,
    pub source_s3_path: S3Path,
    pub tags: Option<Vec<Tag>>,
}

Fields

client_token: Option<String>

A token that you provide to identify the request to create a thesaurus. Multiple calls to the CreateThesaurus operation with the same client token will create only one index.

description: Option<String>

The description for the new thesaurus.

index_id: String

The unique identifier of the index for the new thesaurus.

name: String

The name for the new thesaurus.

role_arn: String

An AWS Identity and Access Management (IAM) role that gives Amazon Kendra permissions to access thesaurus file specified in SourceS3Path.

source_s3_path: S3Path

The thesaurus file Amazon S3 source path.

tags: Option<Vec<Tag>>

A list of key-value pairs that identify the thesaurus. You can use the tags to identify and organize your resources and to control access to resources.

Trait Implementations

impl Clone for CreateThesaurusRequest[src]

impl Debug for CreateThesaurusRequest[src]

impl Default for CreateThesaurusRequest[src]

impl PartialEq<CreateThesaurusRequest> for CreateThesaurusRequest[src]

impl Serialize for CreateThesaurusRequest[src]

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