Class: Aws::WorkSpacesThinClient::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-workspacesthinclient/lib/aws-sdk-workspacesthinclient/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:tag_keys]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource that you want to untag.

Returns:

  • (String)


1214
1215
1216
1217
1218
1219
# File 'gems/aws-sdk-workspacesthinclient/lib/aws-sdk-workspacesthinclient/types.rb', line 1214

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

#tag_keysArray<String>

The keys of the key-value pairs for the tag or tags you want to remove from the specified resource.

Returns:

  • (Array<String>)


1214
1215
1216
1217
1218
1219
# File 'gems/aws-sdk-workspacesthinclient/lib/aws-sdk-workspacesthinclient/types.rb', line 1214

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