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

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

Overview

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)


3050
3051
3052
3053
3054
3055
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 3050

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>)


3050
3051
3052
3053
3054
3055
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 3050

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