Skip to content

Describe Tags

machinelearning_describe_tags R Documentation

Describes one or more of the tags for your Amazon ML object

Description

Describes one or more of the tags for your Amazon ML object.

Usage

machinelearning_describe_tags(ResourceId, ResourceType)

Arguments

ResourceId

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

ResourceType

[required] The type of the ML object.

Value

A list with the following syntax:

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

Request syntax

svc$describe_tags(
  ResourceId = "string",
  ResourceType = "BatchPrediction"|"DataSource"|"Evaluation"|"MLModel"
)