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.
8873 8874 8875 8876 8877 8878 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8873 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.
8873 8874 8875 8876 8877 8878 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8873 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |