Struct aws_sdk_sagemaker::model::LabelingJobDataSource [−][src]
#[non_exhaustive]pub struct LabelingJobDataSource {
pub s3_data_source: Option<LabelingJobS3DataSource>,
pub sns_data_source: Option<LabelingJobSnsDataSource>,
}
Expand description
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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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. To learn more, see Send Data to a Streaming Labeling Job.
Implementations
The Amazon S3 location of the input data objects.
An Amazon SNS data source used for streaming labeling jobs. To learn more, see Send Data to a Streaming Labeling Job.
Creates a new builder-style object to manufacture LabelingJobDataSource
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LabelingJobDataSource
impl Send for LabelingJobDataSource
impl Sync for LabelingJobDataSource
impl Unpin for LabelingJobDataSource
impl UnwindSafe for LabelingJobDataSource
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more