# File lib/AWS/EC2/snapshots.rb, line 42
42:       def delete_snapshot( options = {} )
43:         options = { :snapshot_id => '' }.merge(options)
44:         raise ArgumentError, "No :snapshot_id provided" if options[:snapshot_id].nil? || options[:snapshot_id].empty?
45:         params = {
46:           "SnapshotId" => options[:snapshot_id]
47:         }
48:         return response_generator(:action => "DeleteSnapshot", :params => params)
49:       end