Class: Aws::Textract::Types::HumanLoopDataAttributes

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

Overview

Note:

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

{
  content_classifiers: ["FreeOfPersonallyIdentifiableInformation"], # accepts FreeOfPersonallyIdentifiableInformation, FreeOfAdultContent
}

Allows you to set attributes of the image. Currently, you can declare an image as free of personally identifiable information and adult content.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#content_classifiersArray<String>

Sets whether the input image is free of personally identifiable information or adult content.

Returns:

  • (Array<String>)


949
950
951
952
953
# File 'lib/aws-sdk-textract/types.rb', line 949

class HumanLoopDataAttributes < Struct.new(
  :content_classifiers)
  SENSITIVE = []
  include Aws::Structure
end