# File lib/fog/aws/requests/kinesis/list_tags_for_stream.rb, line 36
        def list_tags_for_stream(options={})
          stream_name = options.delete("StreamName")

          unless stream = data[:kinesis_streams].detect{ |s| s["StreamName"] == stream_name }
            raise Fog::AWS::Kinesis::ResourceNotFound.new("Stream #{stream_name} under account #{@account_id} not found.")
          end

          response = Excon::Response.new
          response.status = 200
          response.body = {
            "HasMoreTags" => false,
            "Tags" => stream["Tags"].map{ |k,v|
              {"Key" => k, "Value" => v}
            }

          }
          response
        end