Class: Aws::SageMaker::Types::LabelingJobInputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::LabelingJobInputConfig
- Defined in:
- gems/aws-sdk-sagemaker/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: {
manifest_s3_uri: "S3Uri", # required
},
sns_data_source: {
sns_topic_arn: "SnsTopicArn", # required
},
},
data_attributes: {
content_classifiers: ["FreeOfPersonallyIdentifiableInformation"], # accepts FreeOfPersonallyIdentifiableInformation, FreeOfAdultContent
},
}
Input configuration information for a labeling job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_attributes ⇒ Types::LabelingJobDataAttributes
Attributes of the data specified by the customer.
-
#data_source ⇒ Types::LabelingJobDataSource
The location of the input data.
Instance Attribute Details
#data_attributes ⇒ Types::LabelingJobDataAttributes
Attributes of the data specified by the customer.
19133 19134 19135 19136 19137 19138 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 19133 class LabelingJobInputConfig < Struct.new( :data_source, :data_attributes) SENSITIVE = [] include Aws::Structure end |
#data_source ⇒ Types::LabelingJobDataSource
The location of the input data.
19133 19134 19135 19136 19137 19138 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 19133 class LabelingJobInputConfig < Struct.new( :data_source, :data_attributes) SENSITIVE = [] include Aws::Structure end |