Class: Aws::Drs::Types::TagResourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[:tags]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

ARN of the resource for which tags are to be added or updated.

Returns:

  • (String)


3620
3621
3622
3623
3624
3625
# File 'lib/aws-sdk-drs/types.rb', line 3620

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

#tagsHash<String,String>

Array of tags to be added or updated.

Returns:

  • (Hash<String,String>)


3620
3621
3622
3623
3624
3625
# File 'lib/aws-sdk-drs/types.rb', line 3620

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