# File lib/fog/aws/requests/rds/delete_db_cluster_snapshot.rb, line 27
        def delete_db_cluster_snapshot(name)
          response = Excon::Response.new
          snapshot = self.data[:cluster_snapshots].delete(name)

          raise Fog::AWS::RDS::NotFound.new("DBClusterSnapshotNotFound => #{name} not found") unless snapshot

          response.status = 200
          response.body = {
            "ResponseMetadata"              => {"RequestId"         => Fog::AWS::Mock.request_id},
            "DeleteDBClusterSnapshotResult" => {"DBClusterSnapshot" => snapshot}
          }
          response
        end