Class: Aws::MediaConvert::Types::TagResourceRequest

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

Overview

To add tags to a queue, preset, or job template, send a request with the Amazon Resource Name (ARN) of the resource and the tags that you want to add.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the resource that you want to tag. To get the ARN, send a GET request with the resource name.

Returns:

  • (String)


12693
12694
12695
12696
12697
12698
# File 'lib/aws-sdk-mediaconvert/types.rb', line 12693

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

#tagsHash<String,String>

The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.

Returns:

  • (Hash<String,String>)


12693
12694
12695
12696
12697
12698
# File 'lib/aws-sdk-mediaconvert/types.rb', line 12693

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