Class: Aws::SNS::Types::UntagResourceRequest

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

Overview

Note:

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

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The ARN of the topic from which to remove tags.

Returns:

  • (String)


2381
2382
2383
2384
2385
2386
# File 'lib/aws-sdk-sns/types.rb', line 2381

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

#tag_keysArray<String>

The list of tag keys to remove from the specified topic.

Returns:

  • (Array<String>)


2381
2382
2383
2384
2385
2386
# File 'lib/aws-sdk-sns/types.rb', line 2381

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