Class: Aws::Amplify::Types::TagResourceRequest

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

Overview

The request structure to tag a resource with a tag key and value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) to use to tag a resource.

Returns:

  • (String)


2527
2528
2529
2530
2531
2532
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2527

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

#tagsHash<String,String>

The tags used to tag the resource.

Returns:

  • (Hash<String,String>)


2527
2528
2529
2530
2531
2532
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2527

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