# File lib/fog/aws/requests/sns/set_topic_attributes.rb, line 19
        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