[][src]Struct rusoto_sagemaker::LabelingJobDataSource

pub struct LabelingJobDataSource {
    pub s3_data_source: Option<LabelingJobS3DataSource>,
    pub sns_data_source: Option<LabelingJobSnsDataSource>,
}

Provides information about the location of input data.

You must specify at least one of the following: S3DataSource or SnsDataSource.

Use SnsDataSource to specify an SNS input topic for a streaming labeling job. If you do not specify and SNS input topic ARN, Ground Truth will create a one-time labeling job.

Use S3DataSource to specify an input manifest file for both streaming and one-time labeling jobs. Adding an S3DataSource is optional if you use SnsDataSource to create a streaming labeling job.

Fields

s3_data_source: Option<LabelingJobS3DataSource>

The Amazon S3 location of the input data objects.

sns_data_source: Option<LabelingJobSnsDataSource>

An Amazon SNS data source used for streaming labeling jobs.

Trait Implementations

impl Clone for LabelingJobDataSource[src]

impl Debug for LabelingJobDataSource[src]

impl Default for LabelingJobDataSource[src]

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

impl PartialEq<LabelingJobDataSource> for LabelingJobDataSource[src]

impl Serialize for LabelingJobDataSource[src]

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