Class: Aws::SageMaker::Types::LabelingJobDataSource

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_data_sourceTypes::LabelingJobS3DataSource

The Amazon S3 location of the input data objects.



24185
24186
24187
24188
24189
24190
# File 'lib/aws-sdk-sagemaker/types.rb', line 24185

class LabelingJobDataSource < Struct.new(
  :s3_data_source,
  :sns_data_source)
  SENSITIVE = []
  include Aws::Structure
end

#sns_data_sourceTypes::LabelingJobSnsDataSource

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

[1]: docs.aws.amazon.com/sagemaker/latest/dg/sms-streaming-labeling-job.html#sms-streaming-how-it-works-send-data



24185
24186
24187
24188
24189
24190
# File 'lib/aws-sdk-sagemaker/types.rb', line 24185

class LabelingJobDataSource < Struct.new(
  :s3_data_source,
  :sns_data_source)
  SENSITIVE = []
  include Aws::Structure
end