Class: Aws::MarketplaceCatalog::Types::UntagResourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

Required. The Amazon Resource Name (ARN) associated with the resource you want to remove the tag from.

Returns:

  • (String)


2633
2634
2635
2636
2637
2638
# File 'lib/aws-sdk-marketplacecatalog/types.rb', line 2633

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

#tag_keysArray<String>

Required. A list of key names of tags to be removed. Number of strings allowed: 0-256.

Returns:

  • (Array<String>)


2633
2634
2635
2636
2637
2638
# File 'lib/aws-sdk-marketplacecatalog/types.rb', line 2633

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