Class: Aws::Backup::Types::TagResourceInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:tags]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

An ARN that uniquely identifies a resource. The format of the ARN depends on the type of the tagged resource.

Returns:

  • (String)


8348
8349
8350
8351
8352
8353
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8348

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

#tagsHash<String,String>

Key-value pairs that are used to help organize your resources. You can assign your own metadata to the resources you create. For clarity, this is the structure to assign tags: [\{"Key":"string","Value":"string"\}].

Returns:

  • (Hash<String,String>)


8348
8349
8350
8351
8352
8353
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8348

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