UpdateDetectorVersionRequest

public struct UpdateDetectorVersionRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The detector version description.

    Declaration

    Swift

    public let description: String?
  • The parent detector ID for the detector version you want to update.

    Declaration

    Swift

    public let detectorId: String
  • The detector version ID.

    Declaration

    Swift

    public let detectorVersionId: String
  • The Amazon SageMaker model endpoints to include in the detector version.

    Declaration

    Swift

    public let externalModelEndpoints: [String]
  • The model versions to include in the detector version.

    Declaration

    Swift

    public let modelVersions: [ModelVersion]?
  • The rule execution mode to add to the detector. If you specify FIRST_MATCHED, Amazon Fraud Detector evaluates rules sequentially, first to last, stopping at the first matched rule. Amazon Fraud dectector then provides the outcomes for that single rule. If you specifiy ALL_MATCHED, Amazon Fraud Detector evaluates all rules and returns the outcomes for all matched rules. You can define and edit the rule mode at the detector version level, when it is in draft status. The default behavior is FIRST_MATCHED.

    Declaration

    Swift

    public let ruleExecutionMode: RuleExecutionMode?
  • The rules to include in the detector version.

    Declaration

    Swift

    public let rules: [Rule]
  • Undocumented

    Declaration

    Swift

    public init(description: String? = nil, detectorId: String, detectorVersionId: String, externalModelEndpoints: [String], modelVersions: [ModelVersion]? = nil, ruleExecutionMode: RuleExecutionMode? = nil, rules: [Rule])
  • Declaration

    Swift

    public func validate(name: String) throws