[][src]Struct rusoto_kendra::BatchPutDocumentRequest

pub struct BatchPutDocumentRequest {
    pub documents: Vec<Document>,
    pub index_id: String,
    pub role_arn: Option<String>,
}

Fields

documents: Vec<Document>

One or more documents to add to the index.

Documents have the following file size limits.

  • 5 MB total size for inline documents

  • 50 MB total size for files from an S3 bucket

  • 5 MB extracted text for any file

For more information about file size and transaction per second quotas, see Quotas.

index_id: String

The identifier of the index to add the documents to. You need to create the index first using the CreateIndex operation.

role_arn: Option<String>

The Amazon Resource Name (ARN) of a role that is allowed to run the BatchPutDocument operation. For more information, see IAM Roles for Amazon Kendra.

Trait Implementations

impl Clone for BatchPutDocumentRequest[src]

impl Debug for BatchPutDocumentRequest[src]

impl Default for BatchPutDocumentRequest[src]

impl PartialEq<BatchPutDocumentRequest> for BatchPutDocumentRequest[src]

impl Serialize for BatchPutDocumentRequest[src]

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