UpdateMLModelInput

public struct UpdateMLModelInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID assigned to the MLModel during creation.

    Declaration

    Swift

    public let mLModelId: String
  • A user-supplied name or description of the MLModel.

    Declaration

    Swift

    public let mLModelName: String?
  • The ScoreThreshold used in binary classification MLModel that marks the boundary between a positive prediction and a negative prediction. Output values greater than or equal to the ScoreThreshold receive a positive result from the MLModel, such as true. Output values less than the ScoreThreshold receive a negative response from the MLModel, such as false.

    Declaration

    Swift

    public let scoreThreshold: Float?
  • Undocumented

    Declaration

    Swift

    public init(mLModelId: String, mLModelName: String? = nil, scoreThreshold: Float? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws