libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SageMaker.Types.LabelingJobDataSource

Description

 
Synopsis

Documentation

data LabelingJobDataSource Source #

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.

See: newLabelingJobDataSource smart constructor.

Constructors

LabelingJobDataSource' 

Fields

Instances

Instances details
Eq LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

Read LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

Show LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

Generic LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

Associated Types

type Rep LabelingJobDataSource :: Type -> Type #

NFData LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

Methods

rnf :: LabelingJobDataSource -> () #

Hashable LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

ToJSON LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

FromJSON LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

type Rep LabelingJobDataSource Source # 
Instance details

Defined in Amazonka.SageMaker.Types.LabelingJobDataSource

type Rep LabelingJobDataSource = D1 ('MetaData "LabelingJobDataSource" "Amazonka.SageMaker.Types.LabelingJobDataSource" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "LabelingJobDataSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "s3DataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LabelingJobS3DataSource)) :*: S1 ('MetaSel ('Just "snsDataSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LabelingJobSnsDataSource))))

newLabelingJobDataSource :: LabelingJobDataSource Source #

Create a value of LabelingJobDataSource with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:s3DataSource:LabelingJobDataSource', labelingJobDataSource_s3DataSource - The Amazon S3 location of the input data objects.

$sel:snsDataSource:LabelingJobDataSource', labelingJobDataSource_snsDataSource - An Amazon SNS data source used for streaming labeling jobs. To learn more, see Send Data to a Streaming Labeling Job.

labelingJobDataSource_snsDataSource :: Lens' LabelingJobDataSource (Maybe LabelingJobSnsDataSource) Source #

An Amazon SNS data source used for streaming labeling jobs. To learn more, see Send Data to a Streaming Labeling Job.