Class: Aws::Comprehend::Types::DocumentClass
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DocumentClass
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Specifies the class that categorizes the document being analyzed
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the class.
-
#page ⇒ Integer
Page number in the input document.
-
#score ⇒ Float
The confidence score that Amazon Comprehend has this class correctly attributed.
Instance Attribute Details
#name ⇒ String
The name of the class.
2727 2728 2729 2730 2731 2732 2733 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2727 class DocumentClass < Struct.new( :name, :score, :page) SENSITIVE = [] include Aws::Structure end |
#page ⇒ Integer
Page number in the input document. This field is present in the response only if your request includes the ‘Byte` parameter.
2727 2728 2729 2730 2731 2732 2733 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2727 class DocumentClass < Struct.new( :name, :score, :page) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Float
The confidence score that Amazon Comprehend has this class correctly attributed.
2727 2728 2729 2730 2731 2732 2733 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2727 class DocumentClass < Struct.new( :name, :score, :page) SENSITIVE = [] include Aws::Structure end |