Skip to content

Delete Tags

machinelearning_delete_tags R Documentation

Deletes the specified tags associated with an ML object

Description

Deletes the specified tags associated with an ML object. After this operation is complete, you can't recover deleted tags.

If you specify a tag that doesn't exist, Amazon ML ignores it.

Usage

machinelearning_delete_tags(TagKeys, ResourceId, ResourceType)

Arguments

TagKeys

[required] One or more tags to delete.

ResourceId

[required] The ID of the tagged ML object. For example, exampleModelId.

ResourceType

[required] The type of the tagged ML object.

Value

A list with the following syntax:

list(
  ResourceId = "string",
  ResourceType = "BatchPrediction"|"DataSource"|"Evaluation"|"MLModel"
)

Request syntax

svc$delete_tags(
  TagKeys = list(
    "string"
  ),
  ResourceId = "string",
  ResourceType = "BatchPrediction"|"DataSource"|"Evaluation"|"MLModel"
)