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.
8909 8910 8911 8912 8913 8914 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8909 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.
8909 8910 8911 8912 8913 8914 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8909 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |