DetectCustomLabelsRequest

public struct DetectCustomLabelsRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Undocumented

    Declaration

    Swift

    public let image: Image
  • Maximum number of results you want the service to return in the response. The service returns the specified number of highest confidence labels ranked from highest confidence to lowest.

    Declaration

    Swift

    public let maxResults: Int?
  • Specifies the minimum confidence level for the labels to return. Amazon Rekognition doesn’t return any labels with a confidence lower than this specified value. If you specify a value of 0, all labels are return, regardless of the default thresholds that the model version applies.

    Declaration

    Swift

    public let minConfidence: Float?
  • The ARN of the model version that you want to use.

    Declaration

    Swift

    public let projectVersionArn: String
  • Undocumented

    Declaration

    Swift

    public init(image: Image, maxResults: Int? = nil, minConfidence: Float? = nil, projectVersionArn: String)
  • Declaration

    Swift

    public func validate(name: String) throws