Skip to content

Delete Dataset

rekognition_delete_dataset R Documentation

This operation applies only to Amazon Rekognition Custom Labels

Description

This operation applies only to Amazon Rekognition Custom Labels.

Deletes an existing Amazon Rekognition Custom Labels dataset. Deleting a dataset might take while. Use describe_dataset to check the current status. The dataset is still deleting if the value of Status is DELETE_IN_PROGRESS. If you try to access the dataset after it is deleted, you get a ResourceNotFoundException exception.

You can't delete a dataset while it is creating (Status = CREATE_IN_PROGRESS) or if the dataset is updating (Status = UPDATE_IN_PROGRESS).

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

Usage

rekognition_delete_dataset(DatasetArn)

Arguments

DatasetArn

[required] The ARN of the Amazon Rekognition Custom Labels dataset that you want to delete.

Value

An empty list.

Request syntax

svc$delete_dataset(
  DatasetArn = "string"
)

Examples

## Not run: 
# Deletes an Amazon Rekognition Custom Labels dataset.
svc$delete_dataset(
  DatasetArn = "arn:aws:rekognition:us-east-1:111122223333:project/my-proje..."
)

## End(Not run)