SearchFacesRequest
public struct SearchFacesRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
ID of the collection the face belongs to.
Declaration
Swift
public let collectionId: String
-
ID of a face to find matches for in the collection.
Declaration
Swift
public let faceId: String
-
Optional value specifying the minimum confidence in the face match to return. For example, don’t return any matches where confidence in matches is less than 70%. The default value is 80%.
Declaration
Swift
public let faceMatchThreshold: Float?
-
Maximum number of faces to return. The operation returns the maximum number of faces with the highest confidence in the match.
Declaration
Swift
public let maxFaces: Int?
-
Undocumented
Declaration
Swift
public init(collectionId: String, faceId: String, faceMatchThreshold: Float? = nil, maxFaces: Int? = nil)
-
Declaration
Swift
public func validate(name: String) throws