Class: Aws::Textract::Types::Prediction

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

Overview

Contains information regarding predicted values returned by Amazon Textract operations, including the predicted value and the confidence in the predicted value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#confidenceFloat

Amazon Textract’s confidence in its predicted value.

Returns:

  • (Float)


1786
1787
1788
1789
1790
1791
# File 'lib/aws-sdk-textract/types.rb', line 1786

class Prediction < Struct.new(
  :value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The predicted value of a detected object.

Returns:

  • (String)


1786
1787
1788
1789
1790
1791
# File 'lib/aws-sdk-textract/types.rb', line 1786

class Prediction < Struct.new(
  :value,
  :confidence)
  SENSITIVE = []
  include Aws::Structure
end