Class: Aws::GreengrassV2::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::TagResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrassv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The [ARN] of the resource to tag.
-
#tags ⇒ Hash<String,String>
A list of key-value pairs that contain metadata for the resource.
Instance Attribute Details
#resource_arn ⇒ String
The [ARN] of the resource to tag.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
3011 3012 3013 3014 3015 3016 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 3011 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A list of key-value pairs that contain metadata for the resource. For more information, see [Tag your resources] in the *IoT Greengrass V2 Developer Guide*.
[1]: docs.aws.amazon.com/greengrass/v2/developerguide/tag-resources.html
3011 3012 3013 3014 3015 3016 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 3011 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |