Sha256: c4bc3a9025fe79d22e43e59d3593100b96a9cba2ea51dd514079c06c49606240
Contents?: true
Size: 598 Bytes
Versions: 20
Compression:
Stored size: 598 Bytes
Contents
module Fog module AWS class SNS class Real require 'fog/aws/parsers/sns/delete_topic' # Delete a topic # # ==== Parameters # * arn<~String> - The Arn of the topic to delete # # ==== See Also # http://docs.amazonwebservices.com/sns/latest/api/API_DeleteTopic.html # def delete_topic(arn) request({ 'Action' => 'DeleteTopic', 'TopicArn' => arn, :parser => Fog::Parsers::AWS::SNS::DeleteTopic.new }) end end end end end
Version data entries
20 entries across 20 versions & 4 rubygems