Class: Aws::TranscribeService::Types::TagResourceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transcribeservice/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource you want to tag. 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`.

Returns:

  • (String)


4308
4309
4310
4311
4312
4313
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4308

class TagResourceRequest < Struct.new(
  :resource_arn,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

Adds one or more custom tags, each in the form of a key:value pair, to the specified resource.

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

[1]: docs.aws.amazon.com/transcribe/latest/dg/tagging.html

Returns:



4308
4309
4310
4311
4312
4313
# File 'lib/aws-sdk-transcribeservice/types.rb', line 4308

class TagResourceRequest < Struct.new(
  :resource_arn,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end