ICD10CMEntity

public struct ICD10CMEntity : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The detected attributes that relate to the entity. An extracted segment of the text that is an attribute of an entity, or otherwise related to an entity, such as the nature of a medical condition.

    Declaration

    Swift

    public let attributes: [ICD10CMAttribute]?
  • The 0-based character offset in the input text that shows where the entity begins. The offset returns the UTF-8 code point in the string.

    Declaration

    Swift

    public let beginOffset: Int?
  • The category of the entity. InferICD10CM detects entities in the MEDICAL_CONDITION category.

    Declaration

    Swift

    public let category: ICD10CMEntityCategory?
  • The 0-based character offset in the input text that shows where the entity ends. The offset returns the UTF-8 code point in the string.

    Declaration

    Swift

    public let endOffset: Int?
  • The ICD-10-CM concepts that the entity could refer to, along with a score indicating the likelihood of the match.

    Declaration

    Swift

    public let iCD10CMConcepts: [ICD10CMConcept]?
  • id

    The numeric identifier for the entity. This is a monotonically increasing id unique within this response rather than a global unique identifier.

    Declaration

    Swift

    public let id: Int?
  • The level of confidence that Amazon Comprehend Medical has in the accuracy of the detection.

    Declaration

    Swift

    public let score: Float?
  • The segment of input text that is matched to the detected entity.

    Declaration

    Swift

    public let text: String?
  • Provides Contextual information for the entity. The traits recognized by InferICD10CM are DIAGNOSIS, SIGN, SYMPTOM, and NEGATION.

    Declaration

    Swift

    public let traits: [ICD10CMTrait]?
  • Describes the specific type of entity with category of entities. InferICD10CM detects entities of the type DX_NAME.

    Declaration

    Swift

    public let type: ICD10CMEntityType?
  • Undocumented

    Declaration

    Swift

    public init(attributes: [ICD10CMAttribute]? = nil, beginOffset: Int? = nil, category: ICD10CMEntityCategory? = nil, endOffset: Int? = nil, iCD10CMConcepts: [ICD10CMConcept]? = nil, id: Int? = nil, score: Float? = nil, text: String? = nil, traits: [ICD10CMTrait]? = nil, type: ICD10CMEntityType? = nil)