Update Detector Version
| frauddetector_update_detector_version | R Documentation | 
Updates a detector version¶
Description¶
Updates a detector version. The detector version attributes that you can
update include models, external model endpoints, rules, rule execution
mode, and description. You can only update a DRAFT detector version.
Usage¶
frauddetector_update_detector_version(detectorId, detectorVersionId,
  externalModelEndpoints, rules, description, modelVersions,
  ruleExecutionMode)
Arguments¶
detectorId | 
[required] The parent detector ID for the detector version you want to update.  | 
detectorVersionId | 
[required] The detector version ID.  | 
externalModelEndpoints | 
[required] The Amazon SageMaker model endpoints to include in the detector version.  | 
rules | 
[required] The rules to include in the detector version.  | 
description | 
The detector version description.  | 
modelVersions | 
The model versions to include in the detector version.  | 
ruleExecutionMode | 
The rule execution mode to add to the detector. If you specify  If you specifiy  The default behavior is   | 
Value¶
An empty list.
Request syntax¶
svc$update_detector_version(
  detectorId = "string",
  detectorVersionId = "string",
  externalModelEndpoints = list(
    "string"
  ),
  rules = list(
    list(
      detectorId = "string",
      ruleId = "string",
      ruleVersion = "string"
    )
  ),
  description = "string",
  modelVersions = list(
    list(
      modelId = "string",
      modelType = "ONLINE_FRAUD_INSIGHTS"|"TRANSACTION_FRAUD_INSIGHTS"|"ACCOUNT_TAKEOVER_INSIGHTS",
      modelVersionNumber = "string",
      arn = "string"
    )
  ),
  ruleExecutionMode = "ALL_MATCHED"|"FIRST_MATCHED"
)