Class: Aws::AppMesh::Types::UntagResourceInput

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource to delete tags from.

Returns:

  • (String)


3227
3228
3229
3230
3231
# File 'lib/aws-sdk-appmesh/types.rb', line 3227

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

#tag_keysArray<String>

The keys of the tags to be removed.

Returns:

  • (Array<String>)


3227
3228
3229
3230
3231
# File 'lib/aws-sdk-appmesh/types.rb', line 3227

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