Sha256: f3516b889d851657bf741af4a9d953924ea31ad142555ab453fb6259a364a9b6
Contents?: true
Size: 964 Bytes
Versions: 87
Compression:
Stored size: 964 Bytes
Contents
module Fog module AWS class SNS class Real require 'fog/aws/parsers/sns/set_topic_attributes' # Set attributes of a topic # # ==== Parameters # * arn<~Hash> - The Arn of the topic to get attributes for # * attribute_name<~String> - Name of attribute to set, in ['DisplayName', 'Policy'] # * attribute_value<~String> - Value to set attribute to # # ==== See Also # http://docs.amazonwebservices.com/sns/latest/api/API_SetTopicAttributes.html # def set_topic_attributes(arn, attribute_name, attribute_value) request({ 'Action' => 'SetTopicAttributes', 'AttributeName' => attribute_name, 'AttributeValue' => attribute_value, 'TopicArn' => arn.strip, :parser => Fog::Parsers::AWS::SNS::SetTopicAttributes.new }) end end end end end
Version data entries
87 entries across 87 versions & 15 rubygems