Skip to content

Stop Project Version

rekognition_stop_project_version R Documentation

This operation applies only to Amazon Rekognition Custom Labels

Description

This operation applies only to Amazon Rekognition Custom Labels.

Stops a running model. The operation might take a while to complete. To check the current status, call describe_project_versions. Only applies to Custom Labels projects.

This operation requires permissions to perform the rekognition:StopProjectVersion action.

Usage

rekognition_stop_project_version(ProjectVersionArn)

Arguments

ProjectVersionArn

[required] The Amazon Resource Name (ARN) of the model version that you want to stop.

This operation requires permissions to perform the rekognition:StopProjectVersion action.

Value

A list with the following syntax:

list(
  Status = "TRAINING_IN_PROGRESS"|"TRAINING_COMPLETED"|"TRAINING_FAILED"|"STARTING"|"RUNNING"|"FAILED"|"STOPPING"|"STOPPED"|"DELETING"|"COPYING_IN_PROGRESS"|"COPYING_COMPLETED"|"COPYING_FAILED"|"DEPRECATED"|"EXPIRED"
)

Request syntax

svc$stop_project_version(
  ProjectVersionArn = "string"
)

Examples

## Not run: 
# Stops a version of an Amazon Rekognition Custom Labels model.
svc$stop_project_version(
  ProjectVersionArn = "arn:aws:rekognition:us-east-1:111122223333:project/m..."
)

## End(Not run)