Class: Aws::WorkSpaces::Types::DeleteTagsRequest

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

Overview

Note:

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

{
  resource_id: "NonEmptyString", # required
  tag_keys: ["NonEmptyString"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#resource_idString

The identifier of the WorkSpace. To find this ID, use DescribeWorkspaces.

Returns:

  • (String)


387
388
389
390
391
# File 'lib/aws-sdk-workspaces/types.rb', line 387

class DeleteTagsRequest < Struct.new(
  :resource_id,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<String>

The tag keys.

Returns:

  • (Array<String>)


387
388
389
390
391
# File 'lib/aws-sdk-workspaces/types.rb', line 387

class DeleteTagsRequest < Struct.new(
  :resource_id,
  :tag_keys)
  include Aws::Structure
end