Class: Aws::AlexaForBusiness::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass UntagResourceRequest data as a hash:
{
arn: "Arn", # required
tag_keys: ["TagKey"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the resource from which to remove metadata tags.
-
#tag_keys ⇒ Array<String>
The tags to be removed from the specified resource.
Instance Attribute Details
#arn ⇒ String
The ARN of the resource from which to remove metadata tags. Required.
5823 5824 5825 5826 5827 5828 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 5823 class UntagResourceRequest < Struct.new( :arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The tags to be removed from the specified resource. Do not provide system tags. Required.
5823 5824 5825 5826 5827 5828 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 5823 class UntagResourceRequest < Struct.new( :arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |