Sha256: 3daf8dd3ba8d3a82ee735e15d0a1ebc805f6f04b8b7d136033205c1f45b49827
Contents?: true
Size: 958 Bytes
Versions: 20
Compression:
Stored size: 958 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, :parser => Fog::Parsers::AWS::SNS::SetTopicAttributes.new }) end end end end end
Version data entries
20 entries across 20 versions & 4 rubygems