DetectEntitiesV2Response
public struct DetectEntitiesV2Response : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The collection of medical entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence in the detection and analysis. Attributes and traits of the entity are also returned.
Declaration
Swift
public let entities: [Entity]
-
The version of the model used to analyze the documents. The version number looks like X.X.X. You can use this information to track the model used for a particular batch of documents.
Declaration
Swift
public let modelVersion: String
-
If the result to the DetectEntitiesV2 operation was truncated, include the PaginationToken to fetch the next page of entities.
Declaration
Swift
public let paginationToken: String?
-
Attributes extracted from the input text that couldn’t be related to an entity.
Declaration
Swift
public let unmappedAttributes: [UnmappedAttribute]?
-
Undocumented
Declaration
Swift
public init(entities: [Entity], modelVersion: String, paginationToken: String? = nil, unmappedAttributes: [UnmappedAttribute]? = nil)