Skip to content

List Tags For Resource

transcribeservice_list_tags_for_resource R Documentation

Lists all tags associated with the specified transcription job, vocabulary, model, or resource

Description

Lists all tags associated with the specified transcription job, vocabulary, model, or resource.

To learn more about using tags with Amazon Transcribe, refer to Tagging resources.

Usage

transcribeservice_list_tags_for_resource(ResourceArn)

Arguments

ResourceArn

[required] Returns a list of all tags associated with the specified Amazon Resource Name (ARN). ARNs have the format arn:partition:service:region:account-id:resource-type/resource-id.

For example, arn:aws:transcribe:us-west-2:111122223333:transcription-job/transcription-job-name.

Valid values for resource-type are: transcription-job, medical-transcription-job, vocabulary, medical-vocabulary, vocabulary-filter, and language-model.

Value

A list with the following syntax:

list(
  ResourceArn = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)

Request syntax

svc$list_tags_for_resource(
  ResourceArn = "string"
)