Class: Aws::AlexaForBusiness::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
arn: "Arn", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the resource to which to add metadata tags.
-
#tags ⇒ Array<Types::Tag>
The tags to be added to the specified resource.
Instance Attribute Details
#arn ⇒ String
The ARN of the resource to which to add metadata tags. Required.
5751 5752 5753 5754 5755 5756 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 5751 class TagResourceRequest < Struct.new( :arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to be added to the specified resource. Do not provide system tags. Required.
5751 5752 5753 5754 5755 5756 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 5751 class TagResourceRequest < Struct.new( :arn, :tags) SENSITIVE = [] include Aws::Structure end |