Class: Aws::AugmentedAIRuntime::Types::HumanLoopDataAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::AugmentedAIRuntime::Types::HumanLoopDataAttributes
- Defined in:
- gems/aws-sdk-augmentedairuntime/lib/aws-sdk-augmentedairuntime/types.rb
Overview
Note:
When making an API call, you may pass HumanLoopDataAttributes data as a hash:
{
content_classifiers: ["FreeOfPersonallyIdentifiableInformation"], # required, accepts FreeOfPersonallyIdentifiableInformation, FreeOfAdultContent
}
Attributes of the data specified by the customer. Use these to describe the data to be labeled.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_classifiers ⇒ Array<String>
Declares that your content is free of personally identifiable information or adult content.
Instance Attribute Details
#content_classifiers ⇒ Array<String>
Declares that your content is free of personally identifiable information or adult content.
Amazon SageMaker can restrict the Amazon Mechanical Turk workers who can view your task based on this information.
143 144 145 146 147 |
# File 'gems/aws-sdk-augmentedairuntime/lib/aws-sdk-augmentedairuntime/types.rb', line 143 class HumanLoopDataAttributes < Struct.new( :content_classifiers) SENSITIVE = [] include Aws::Structure end |