[][src]Struct rusoto_comprehend::AugmentedManifestsListItem

pub struct AugmentedManifestsListItem {
    pub attribute_names: Vec<String>,
    pub s3_uri: String,
}

An augmented manifest file that provides training data for your custom model. An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker Ground Truth.

Fields

attribute_names: Vec<String>

The JSON attribute that contains the annotations for your training documents. The number of attribute names that you specify depends on whether your augmented manifest file is the output of a single labeling job or a chained labeling job.

If your file is the output of a single labeling job, specify the LabelAttributeName key that was used when the job was created in Ground Truth.

If your file is the output of a chained labeling job, specify the LabelAttributeName key for one or more jobs in the chain. Each LabelAttributeName key provides the annotations from an individual job.

s3_uri: String

The Amazon S3 location of the augmented manifest file.

Trait Implementations

impl Clone for AugmentedManifestsListItem[src]

impl Debug for AugmentedManifestsListItem[src]

impl Default for AugmentedManifestsListItem[src]

impl<'de> Deserialize<'de> for AugmentedManifestsListItem[src]

impl PartialEq<AugmentedManifestsListItem> for AugmentedManifestsListItem[src]

impl Serialize for AugmentedManifestsListItem[src]

impl StructuralPartialEq for AugmentedManifestsListItem[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.