# File lib/fog/aws/requests/redshift/describe_reserved_node_offerings.rb, line 22
        def describe_reserved_node_offerings(options = {})
          reserved_node_offering_id = options[:reserved_node_offering_id]
          marker                    = options[:marker]
          max_records               = options[:max_records]

          path = "/"
          params = {
            :idempotent => true,
            :headers    => {},
            :path       => path,
            :method     => :get,
            :query      => {},
            :parser     => Fog::Parsers::Redshift::AWS::DescribeReservedNodeOfferings.new
          }

          params[:query]['Action']         = 'DescribeReservedNodeOfferings'
          params[:query]['ReservedNodeOfferingId'] = reserved_node_offering_id if reserved_node_offering_id
          params[:query]['Marker']         = marker if marker
          params[:query]['MaxRecords']     = max_records if max_records

          request(params)
        end