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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-drs/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)


3560
3561
3562
3563
3564
3565
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 3560

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>)


3560
3561
3562
3563
3564
3565
# File 'gems/aws-sdk-drs/lib/aws-sdk-drs/types.rb', line 3560

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