[][src]Struct rusoto_kendra::CreateFaqRequest

pub struct CreateFaqRequest {
    pub description: Option<String>,
    pub index_id: String,
    pub name: String,
    pub role_arn: String,
    pub s3_path: S3Path,
    pub tags: Option<Vec<Tag>>,
}

Fields

description: Option<String>

A description of the FAQ.

index_id: String

The identifier of the index that contains the FAQ.

name: String

The name that should be associated with the FAQ.

role_arn: String

The Amazon Resource Name (ARN) of a role with permission to access the S3 bucket that contains the FAQs. For more information, see IAM Roles for Amazon Kendra.

s3_path: S3Path

The S3 location of the FAQ input data.

tags: Option<Vec<Tag>>

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

Trait Implementations

impl Clone for CreateFaqRequest[src]

impl Debug for CreateFaqRequest[src]

impl Default for CreateFaqRequest[src]

impl PartialEq<CreateFaqRequest> for CreateFaqRequest[src]

impl Serialize for CreateFaqRequest[src]

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