# File lib/fog/dns/requests/aws/delete_hosted_zone.rb, line 21
        def delete_hosted_zone(zone_id)

          # AWS methods return zone_ids that looks like '/hostedzone/id'.  Let the caller either use 
          # that form or just the actual id (which is what this request needs)
          zone_id = zone_id.sub('/hostedzone/', '')
          
          request({
            :expects    => 200,
            :parser     => Fog::Parsers::DNS::AWS::DeleteHostedZone.new,
            :method     => 'DELETE',
            :path       => "hostedzone/#{zone_id}"
          })

        end