CreateDetectorVersionRequest
public struct CreateDetectorVersionRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The description of the detector version.
Declaration
Swift
public let description: String?
-
The ID of the detector under which you want to create a new version.
Declaration
Swift
public let detectorId: 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 for the rules included in the detector version. You can define and edit the rule mode at the detector version level, when it is in draft status. 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. 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]
-
A collection of key and value pairs.
Declaration
Swift
public let tags: [Tag]?
-
Undocumented
Declaration
Swift
public init(description: String? = nil, detectorId: String, externalModelEndpoints: [String]? = nil, modelVersions: [ModelVersion]? = nil, ruleExecutionMode: RuleExecutionMode? = nil, rules: [Rule], tags: [Tag]? = nil)
-
Declaration
Swift
public func validate(name: String) throws