Class: Aws::Comprehend::Types::EntityLabel

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name of the label.

Returns:

  • (String)


3952
3953
3954
3955
3956
3957
# File 'lib/aws-sdk-comprehend/types.rb', line 3952

class EntityLabel < Struct.new(
  :name,
  :score)
  SENSITIVE = []
  include Aws::Structure
end

#scoreFloat

The level of confidence that Amazon Comprehend has in the accuracy of the detection.

Returns:

  • (Float)


3952
3953
3954
3955
3956
3957
# File 'lib/aws-sdk-comprehend/types.rb', line 3952

class EntityLabel < Struct.new(
  :name,
  :score)
  SENSITIVE = []
  include Aws::Structure
end