Class: Aws::FSx::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
The request object for UntagResource
action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the Amazon FSx resource to untag.
-
#tag_keys ⇒ Array<String>
A list of keys of tags on the resource to untag.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the Amazon FSx resource to untag.
7521 7522 7523 7524 7525 7526 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7521 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of keys of tags on the resource to untag. In case the tag key doesn't exist, the call will still succeed to be idempotent.
7521 7522 7523 7524 7525 7526 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7521 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |