Class: Aws::Comprehend::Types::EntityLabel
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EntityLabel
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Specifies one of the label or labels that categorize the personally identifiable information (PII) entity being analyzed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the label.
-
#score ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of the detection.
Instance Attribute Details
#name ⇒ String
The name of the label.
3896 3897 3898 3899 3900 3901 |
# File 'lib/aws-sdk-comprehend/types.rb', line 3896 class EntityLabel < Struct.new( :name, :score) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Float
The level of confidence that Amazon Comprehend has in the accuracy of the detection.
3896 3897 3898 3899 3900 3901 |
# File 'lib/aws-sdk-comprehend/types.rb', line 3896 class EntityLabel < Struct.new( :name, :score) SENSITIVE = [] include Aws::Structure end |