Class: Aws::Amplify::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::TagResourceRequest
- 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
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) to use to tag a resource.
-
#tags ⇒ Hash<String,String>
The tags used to tag the resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) to use to tag a resource.
2605 2606 2607 2608 2609 2610 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2605 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags used to tag the resource.
2605 2606 2607 2608 2609 2610 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2605 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |