Class: Aws::IoTWireless::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
Note:
When making an API call, you may pass UntagResourceRequest data as a hash:
{
resource_arn: "AmazonResourceName", # required
tag_keys: ["TagKey"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the resource to remove tags from.
-
#tag_keys ⇒ Array<String>
A list of the keys of the tags to remove from the resource.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the resource to remove tags from.
5328 5329 5330 5331 5332 5333 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 5328 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of the keys of the tags to remove from the resource.
5328 5329 5330 5331 5332 5333 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 5328 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |