Skip to content

Update Model Version Status

frauddetector_update_model_version_status R Documentation

Updates the status of a model version

Description

Updates the status of a model version.

You can perform the following status updates:

  1. Change the TRAINING_IN_PROGRESS status to TRAINING_CANCELLED.

  2. Change the TRAINING_COMPLETE status to ACTIVE.

  3. Change ACTIVE to INACTIVE.

Usage

frauddetector_update_model_version_status(modelId, modelType,
  modelVersionNumber, status)

Arguments

modelId

[required] The model ID of the model version to update.

modelType

[required] The model type.

modelVersionNumber

[required] The model version number.

status

[required] The model version status.

Value

An empty list.

Request syntax

svc$update_model_version_status(
  modelId = "string",
  modelType = "ONLINE_FRAUD_INSIGHTS"|"TRANSACTION_FRAUD_INSIGHTS"|"ACCOUNT_TAKEOVER_INSIGHTS",
  modelVersionNumber = "string",
  status = "ACTIVE"|"INACTIVE"|"TRAINING_CANCELLED"
)