Class: Aws::SageMaker::Types::LabelingJobInputConfig

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

Overview

Note:

When making an API call, you may pass LabelingJobInputConfig data as a hash:

{
  data_source: { # required
    s3_data_source: { # required
      manifest_s3_uri: "S3Uri", # required
    },
  },
  data_attributes: {
    content_classifiers: ["FreeOfPersonallyIdentifiableInformation"], # accepts FreeOfPersonallyIdentifiableInformation, FreeOfAdultContent
  },
}

Input configuration information for a labeling job.

Instance Attribute Summary collapse

Instance Attribute Details

#data_attributesTypes::LabelingJobDataAttributes

Attributes of the data specified by the customer.



6288
6289
6290
6291
6292
# File 'lib/aws-sdk-sagemaker/types.rb', line 6288

class LabelingJobInputConfig < Struct.new(
  :data_source,
  :data_attributes)
  include Aws::Structure
end

#data_sourceTypes::LabelingJobDataSource

The location of the input data.



6288
6289
6290
6291
6292
# File 'lib/aws-sdk-sagemaker/types.rb', line 6288

class LabelingJobInputConfig < Struct.new(
  :data_source,
  :data_attributes)
  include Aws::Structure
end