Class: Aws::Rekognition::Types::HumanLoopConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::HumanLoopConfig
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass HumanLoopConfig data as a hash:
{
human_loop_name: "HumanLoopName", # required
flow_definition_arn: "FlowDefinitionArn", # required
data_attributes: {
content_classifiers: ["FreeOfPersonallyIdentifiableInformation"], # accepts FreeOfPersonallyIdentifiableInformation, FreeOfAdultContent
},
}
Sets up the flow definition the image will be sent to if one of the conditions is met. You can also set certain attributes of the image before review.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_attributes ⇒ Types::HumanLoopDataAttributes
Sets attributes of the input data.
-
#flow_definition_arn ⇒ String
The Amazon Resource Name (ARN) of the flow definition.
-
#human_loop_name ⇒ String
The name of the human review used for this image.
Instance Attribute Details
#data_attributes ⇒ Types::HumanLoopDataAttributes
Sets attributes of the input data.
3620 3621 3622 3623 3624 3625 3626 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3620 class HumanLoopConfig < Struct.new( :human_loop_name, :flow_definition_arn, :data_attributes) SENSITIVE = [] include Aws::Structure end |
#flow_definition_arn ⇒ String
The Amazon Resource Name (ARN) of the flow definition. You can create a flow definition by using the Amazon Sagemaker CreateFlowDefinition Operation.
3620 3621 3622 3623 3624 3625 3626 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3620 class HumanLoopConfig < Struct.new( :human_loop_name, :flow_definition_arn, :data_attributes) SENSITIVE = [] include Aws::Structure end |
#human_loop_name ⇒ String
The name of the human review used for this image. This should be kept unique within a region.
3620 3621 3622 3623 3624 3625 3626 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3620 class HumanLoopConfig < Struct.new( :human_loop_name, :flow_definition_arn, :data_attributes) SENSITIVE = [] include Aws::Structure end |