Class: Aws::ComprehendMedical::Types::ICD10CMTrait

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

Overview

Contextual information for the entity. The traits recognized by InferICD10CM are ‘DIAGNOSIS`, `SIGN`, `SYMPTOM`, and `NEGATION`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Provides a name or contextual description about the trait.

Returns:

  • (String)


755
756
757
758
759
760
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 755

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

#scoreFloat

The level of confidence that Amazon Comprehend Medical has that the segment of text is correctly recognized as a trait.

Returns:

  • (Float)


755
756
757
758
759
760
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 755

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