Class: Aws::IoTThingsGraph::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource_arn: "ResourceArn", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource whose tags are returned.
-
#tags ⇒ Array<Types::Tag>
A list of tags to add to the resource.>.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource whose tags are returned.
1835 1836 1837 1838 1839 1840 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1835 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to add to the resource.>
1835 1836 1837 1838 1839 1840 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1835 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |