Class: Aws::FSx::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-fsx/types.rb

Overview

Note:

When making an API call, you may pass UntagResourceRequest data as a hash:

{
  resource_arn: "ResourceARN", # required
  tag_keys: ["TagKey"], # required
}

The request object for ‘UntagResource` action.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The ARN of the Amazon FSx resource to untag.

Returns:

  • (String)


1161
1162
1163
1164
1165
# File 'lib/aws-sdk-fsx/types.rb', line 1161

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<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.

Returns:

  • (Array<String>)


1161
1162
1163
1164
1165
# File 'lib/aws-sdk-fsx/types.rb', line 1161

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  include Aws::Structure
end